-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
51 lines (46 loc) · 1.4 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
from setuptools import setup
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
install_requires = [
'requests>=2.20.0,<3',
'six>=1.11.0',
'google-auth>=1.6.1,<2',
'setuptools_scm>=3.1.0,<4',
'google-api-python-client>=1.7,<2',
'python-dateutil>=2.8,<3',
]
extras_require = {
'test': [
'black==19.3b0',
'flake8==3.7.7',
'mock>=2.0.0',
'requests_mock>=1.4.0',
'pre-commit==1.14.4',
'pytest-cov>=2.5.1',
'pytest>=3.6.3',
'pytest-timeout>=1.3.1',
]
}
setup(
name='cromwell-tools',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Utilities for interacting with the Cromwell workflow engine',
classifiers=CLASSIFIERS,
url='http://github.com/broadinstitute/cromwell-tools',
author='Mint Team',
author_email='[email protected]',
license='BSD 3-clause "New" or "Revised" License',
packages=['cromwell_tools'],
install_requires=install_requires,
extras_require=extras_require,
entry_points={'console_scripts': ['cromwell-tools = cromwell_tools.cli:main']},
include_package_data=True,
)