setup.py 910 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import os
  2. from setuptools import setup
  3. def read(fname):
  4. with open(os.path.join(os.path.dirname(__file__), fname)) as buf:
  5. return buf.read()
  6. conf = dict(
  7. name='valeriovive',
  8. version='0.1',
  9. description='Twitter Filter Bubble Experiment',
  10. long_description=read('README.md'),
  11. author='cocconat',
  12. author_email='g3-3k@paranoici.org',
  13. url='https://github.com/g3-3k/valeriovive',
  14. license='AGPL',
  15. packages=['valeriovive'],
  16. install_requires=[
  17. 'tweepy',
  18. 'pymongo',
  19. 'mutagen',
  20. 'logging',
  21. ],
  22. zip_safe=False,
  23. classifiers=[
  24. "License :: OSI Approved :: GNU Affero General Public License v3",
  25. "Operating System :: POSIX :: Linux",
  26. "Programming Language :: Python :: 2",
  27. ])
  28. if __name__ == '__main__':
  29. setup(**conf)