forked from molgenis/molgenis-tools-commander
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (22 loc) · 877 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='molgenis-commander',
version='1.0.1',
packages=['mcmd', 'mcmd.client', 'mcmd.commands', 'mcmd.config'],
description='A command line interface for Molgenis',
url='https://github.com/molgenis/molgenis-tools-commander',
author='Tommy de Boer',
author_email='[email protected]',
license='GNU Lesser General Public License 3.0',
include_package_data=True,
entry_points={
'console_scripts': [
'mcmd = mcmd.__main__:main'
]
},
install_requires=['requests==2.21.0', 'rainbow_logging_handler==2.2.2', 'PyInquirer==1.0.3', 'halo==0.0.22',
'polling==0.3.0', 'PyGithub==1.43.3', 'colorama==0.3.9', 'ruamel.yaml==0.15.81',
'molgenis-py-client==1.0.0'],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)