-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 992 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
import sys
try:
from skbuild import setup
except ImportError:
print(
"Please update pip, you need pip 10 or greater,\n"
" or you need to install the PEP 518 requirements in pyproject.toml yourself",
file=sys.stderr,
)
raise
from setuptools import find_packages
setup(
name="flows1d0d3d",
version="0.0.1",
description="Package for calculating the flow and transport inside a vascular network",
author="Andreas Wagner, Prashant K. Jha, Tobias Koeppl, Marvin Fritz",
license="boost software license 1.0",
packages=find_packages(where="python/src"),
package_dir={"": "python/src"},
cmake_install_dir="python/src/flows1d0d3d",
cmake_args=['-DLibMacrocirculation_Enable_Apps:BOOL=OFF',
'-DLibMacrocirculation_Enable_Tests:Bool=OFF',
'-DLibMacrocirculation_Enable_Python_Bindings=ON'],
include_package_data=True,
extras_require={"test": ["pytest"]},
python_requires=">=3.6",
)