Add requirements, edit setup.py and README
This commit is contained in:
20
setup.py
20
setup.py
@@ -1,19 +1,13 @@
|
||||
from distutils.core import setup
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup( name='morss',
|
||||
package_name = 'morss'
|
||||
setup( name=package_name,
|
||||
description='Get full-text RSS feeds',
|
||||
author='pictuga',
|
||||
author_email='contact at author name dot com',
|
||||
url='http://morss.it/',
|
||||
license='GPL 3+',
|
||||
packages=['morss'],
|
||||
package_data={'':['feedify.ini']},
|
||||
install_requires=[
|
||||
'readability-lxml',
|
||||
'python-dateutil <= 1.5',
|
||||
'lxml',
|
||||
'html2text',
|
||||
'ordereddict',
|
||||
'wheezy.template'
|
||||
]
|
||||
)
|
||||
package_dir={package_name: package_name},
|
||||
packages=find_packages(),
|
||||
package_data={package_name: ['feedify.ini']},
|
||||
test_suite=package_name + '.tests')
|
||||
|
Reference in New Issue
Block a user