setup.py 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. #!/usr/bin/env python3
  2. from setuptools import setup
  3. VERSION = '0.2.1.3'
  4. setup(name='twitter2rss',
  5. version=VERSION,
  6. description='Parse Twitter users and create RSS files',
  7. long_description=open('README.rst', encoding='utf-8').read(),
  8. author='drymer',
  9. author_email='drymer@autistici.org',
  10. url='http://daemons.cf/cgit/twiter2rss/about/',
  11. scripts=['twitter2rss.py'],
  12. license="GPLv3",
  13. data_files = [
  14. ('/var/www/twitter2rss/', ['index.php', 'twitter2rss.css'])
  15. ],
  16. install_requires=[
  17. "requests>=2.9.0",
  18. "pyrss2gen>=1.1",
  19. ],
  20. classifiers=["Development Status :: 4 - Beta",
  21. "Programming Language :: Python",
  22. "Programming Language :: Python :: 3",
  23. "Programming Language :: Python :: 3.4",
  24. "Operating System :: OS Independent",
  25. "Operating System :: POSIX",
  26. "Intended Audience :: End Users/Desktop"]
  27. )