setup.py 648 B

12345678910111213141516171819202122232425
  1. from setuptools import setup
  2. setup(name='rscli',
  3. version='0.1',
  4. # description='The funniest joke in the world',
  5. # url='http://github.com/storborg/funniest',
  6. author='boyska',
  7. author_email='',
  8. license='AGPL3',
  9. packages=['rscli'],
  10. install_requires=[
  11. 'ansicolors==1.1.8',
  12. 'certifi==2019.11.28',
  13. 'chardet==3.0.4',
  14. 'idna==2.8',
  15. 'pkg-resources==0.0.0',
  16. 'requests==2.22.0',
  17. 'urllib3==1.25.7',
  18. 'Fsdb==1.2.2',
  19. ],
  20. entry_points = {
  21. 'console_scripts': ['rscli=rscli.cli:main'],
  22. },
  23. zip_safe=False)