forked from fair-research/deriva-flow-client
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
55 lines (52 loc) · 1.67 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
from setuptools import find_packages, setup
# Single source of truth for version
version_ns = {}
with open(os.path.join("cfde_submit", "version.py")) as f:
exec(f.read(), version_ns)
version = version_ns['__version__']
with open('README.rst') as f:
long_description = f.read()
setup(
name="cfde-submit",
description="A command line tool for submitting CFDE Datasets",
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/nih-cfde/cfde-submit',
version=version,
packages=find_packages(),
entry_points='''
[console_scripts]
cfde-submit=cfde_submit.main:cli
''',
install_requires=[
"bdbag>=1.6.0",
"click==7.1.1",
"fair-research-login==0.2.6",
"frictionless==4.16.2",
"GitPython>=3.0.4",
"globus-automate-client==0.12.2",
"globus-sdk<3.0,>=2.0",
"jsonschema<4.0.0,>=3.2.0",
"packaging>=20.1",
"PyYAML<6.0.0,>=5.3.1",
"requests>=2.22.0",
"typer[all]<0.4.0,>=0.3.0",
],
python_requires=">=3.6",
license='Apache 2.0',
maintainer='CFDE',
maintainer_email='[email protected]',
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)