morss/setup.py

16 lines
312 B
Python
Raw Normal View History

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/',
licence='GPL 3+',
packages=['morss'],
install_required=[
'readability-lxml',
'python-dateutil <= 1.5',
'lxml'
]
)