setup.py 377 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. from distutils.core import setup
  3. setup(
  4. name='Globalist',
  5. version='0.0.6.2',
  6. description='Globalist distributed git onions',
  7. author='fnordomat',
  8. # author_email='',
  9. url='https://github.com/fnordomat/Globalist',
  10. packages=['globalist'],
  11. scripts=['Globalist.py'],
  12. install_requires=['stem>=1.5.0'],
  13. license='GPLv3'
  14. )