-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
80 lines (73 loc) · 1.81 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
77
78
79
80
"""Setup for the astrovascpy package."""
import importlib.util
from pathlib import Path
from setuptools import find_namespace_packages, setup
spec = importlib.util.spec_from_file_location(
"astrovascpy.version",
"astrovascpy/version.py",
)
module = importlib.util.module_from_spec(spec)
spec.loader.exec_module(module)
VERSION = module.VERSION
reqs = [
"cached-property",
"click",
"coverage",
"cython",
"h5py",
"libsonata",
"matplotlib",
"morphio",
"mpi4py",
"networkx",
"numpy",
"pandas",
"psutil",
"pyyaml",
"scipy",
"seaborn",
"tables",
"tqdm",
"trimesh",
"vascpy",
]
doc_reqs = [
"sphinx-mdinclude",
"sphinx",
"sphinx-bluebrain-theme",
"sphinx-click",
]
test_reqs = [
"pytest",
"pytest-mpi",
]
setup(
name="AstroVascPy",
description="Simulating blood flow in vasculature",
author="Blue Brain Project, EPFL",
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
url="https://github.com/BlueBrain/AstroVascPy",
project_urls={
"Tracker": "https://github.com/BlueBrain/AstroVascpy/issues",
"Source": "https://github.com/BlueBrain/AstroVascPy",
},
license="Apache-2",
packages=find_namespace_packages(include=["astrovascpy*"]),
python_requires=">=3.11",
version=VERSION,
install_requires=reqs,
extras_require={
"docs": doc_reqs,
"test": test_reqs,
"viz": ["vtk"],
},
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)