25 lines
648 B
Python
25 lines
648 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'],
|
|
|
|
install_requires=[
|
|
'ansicolors==1.1.8',
|
|
'certifi==2019.11.28',
|
|
'chardet==3.0.4',
|
|
'idna==2.8',
|
|
'pkg-resources==0.0.0',
|
|
'requests==2.22.0',
|
|
'urllib3==1.25.7',
|
|
'Fsdb==1.2.2',
|
|
],
|
|
entry_points = {
|
|
'console_scripts': ['rscli=rscli.cli:main'],
|
|
},
|
|
zip_safe=False)
|