setup.py 381 B

123456789101112131415
  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. entry_points = {
  11. 'console_scripts': ['rscli=rscli.cli:main'],
  12. },
  13. zip_safe=False)