-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (38 loc) · 1.24 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
from setuptools import setup
setup(name='DukeDSClient',
version='3.4.0',
description='Command line tool(ddsclient) to upload/manage projects on the duke-data-service.',
url='https://github.com/Duke-GCB/DukeDSClient',
keywords='duke dds dukedataservice',
author='John Bradley',
license='MIT',
packages=['ddsc', 'ddsc.core', 'ddsc.sdk', 'ddsc.azure', 'DukeDS'],
install_requires=[
'requests>=2.20.0',
'PyYAML>=5.1',
'pytz',
'future',
'six',
'tenacity==6.2.0',
'tabulate',
'azure-identity',
'azure-mgmt-storage',
'azure-storage-file-datalake',
'msgraph-core==0.2.2',
],
test_suite='nose.collector',
tests_require=['nose', 'mock'],
entry_points={
'console_scripts': [
'ddsclient = ddsc.__main__:main',
'ddd = ddsc.azure.__main__:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License'
],
python_requires='>=3.7',
)