forked from HumanCellAtlas/metadata-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (34 loc) · 911 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
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_namespace_packages
setup(
name="hca-metadata-api",
version="1.0b23.dev1",
license='MIT',
install_requires=[
'dataclasses >= 0.6'
],
# Not using tests_require because that installs the test requirements into .eggs, not the virtualenv
extras_require={
"dss": [
'hca == 6.4.0',
'urllib3 >= 1.23',
'requests >= 2.19.1'
],
"examples": [
'jupyter >= 1.0.0'
],
"coverage": [
'coverage',
'coveralls'
],
"test": [
'checksumming_io == 0.0.1',
'atomicwrites == 1.3.0',
'more_itertools == 7.0.0'
]
},
package_dir={'': 'src'},
packages=find_namespace_packages('src'),
project_urls={
"Source Code": "https://github.com/HumanCellAtlas/metadata-api",
}
)