-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
76 lines (65 loc) · 2.02 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
if __name__ == "__main__":
base_dir = os.path.dirname(__file__)
src_dir = os.path.join(base_dir, "src")
about = {}
with open(os.path.join(src_dir, "gbd_mapping", "__about__.py")) as f:
exec(f.read(), about)
with open(os.path.join(base_dir, "README.rst")) as f:
long_description = f.read()
install_requirements = [
"click",
"numpy",
"pandas",
"pyyaml",
]
setup_requires = ["setuptools_scm"]
data_requires = [
"vivarium-gbd-access>=4.0.0, <5.0.0",
]
test_requirements = [
"pytest",
"pytest-cov",
"pytest-mock",
]
doc_requirements = [
"sphinx>=6.2.1, <7.0",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
]
lint_requirements = [
"black==22.3.0",
"isort",
]
setup(
name=about["__title__"],
description=about["__summary__"],
long_description=long_description,
url=about["__uri__"],
author=about["__author__"],
author_email=about["__email__"],
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
install_requires=install_requirements,
tests_require=test_requirements,
extras_require={
"docs": doc_requirements,
"test": test_requirements,
"data": data_requires,
"dev": doc_requirements + test_requirements + data_requires + lint_requirements,
},
entry_points="""
[console_scripts]
build_mapping=gbd_mapping_generator.build_mapping:build_mapping
""",
zip_safe=False,
use_scm_version={
"write_to": "src/gbd_mapping/_version.py",
"write_to_template": '__version__ = "{version}"\n',
"tag_regex": r"^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$",
},
setup_requires=setup_requires,
)