2014-01-11 16:11:57 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup( name='morss',
|
|
|
|
description='Get full-text RSS feeds',
|
|
|
|
author='pictuga',
|
|
|
|
author_email='contact at author name dot com',
|
|
|
|
url='http://morss.it/',
|
2014-01-11 16:29:06 +00:00
|
|
|
license='GPL 3+',
|
2014-01-11 16:11:57 +00:00
|
|
|
packages=['morss'],
|
2014-01-11 16:29:06 +00:00
|
|
|
package_data={'':['feedify.ini']},
|
|
|
|
install_requires=[
|
2014-01-11 16:11:57 +00:00
|
|
|
'readability-lxml',
|
|
|
|
'python-dateutil <= 1.5',
|
2014-01-12 23:24:03 +00:00
|
|
|
'lxml',
|
|
|
|
'html2text',
|
|
|
|
'ordereddict'
|
2014-01-11 16:11:57 +00:00
|
|
|
]
|
|
|
|
)
|