16 lines
381 B
Python
16 lines
381 B
Python
|
from setuptools import setup
|
||
|
|
||
|
setup(name='rscli',
|
||
|
version='0.1',
|
||
|
# description='The funniest joke in the world',
|
||
|
# url='http://github.com/storborg/funniest',
|
||
|
author='boyska',
|
||
|
author_email='',
|
||
|
license='AGPL3',
|
||
|
packages=['rscli'],
|
||
|
|
||
|
entry_points = {
|
||
|
'console_scripts': ['rscli=rscli.cli:main'],
|
||
|
},
|
||
|
zip_safe=False)
|