-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (60 loc) · 3.64 KB
/
pyproject.toml
File metadata and controls
66 lines (60 loc) · 3.64 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "epanet-plus"
description = "Python interface for EPANET-PLUS (incl. EPANET and EPANET-MSX)"
authors = [
{name = "André Artelt", email = "aartelt@techfak.uni-bielefeld.de"}
]
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
keywords=["epanet", "water", "networks", "hydraulics", "quality", "simulations"]
dynamic = ["version", "readme", "dependencies"]
[project.urls]
Homepage = "https://github.com/WaterFutures/EPANET-PLUS"
Documentation = "https://epanet-plus.readthedocs.io/en/stable/"
Repository = "https://github.com/WaterFutures/EPANET-PLUS.git"
Issues = "https://github.com/WaterFutures/EPANET-PLUS/issues"
[tool.setuptools.dynamic]
version = {file = "epanet_plus/VERSION"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "REQUIREMENTS.txt"}
[tool.cibuildwheel]
before-all = "uname -a"
[tool.setuptools.packages]
find = {}
[tool.setuptools]
ext-modules = [
{name = "epanet", include-dirs=["epanet-src/include", "epanet-src/", "epanet-msx-src/include", "epanet-msx-src/",
"python-extension", "epanet_plus/include", "epanet-src/util"], sources = ["python-extension/pyepanet.c",
"python-extension/pyepanet2.c", "python-extension/pyepanetmsx.c", "python-extension/pyepanet_plus.c",
"python-extension/ext.c", "epanet_plus/epanet_plus.c", "epanet-src/epanet2.c", "epanet-src/hydcoeffs.c",
"epanet-src/inpfile.c", "epanet-src/quality.c", "epanet-src/rules.c", "epanet-src/epanet.c",
"epanet-src/hydraul.c", "epanet-src/input1.c", "epanet-src/mempool.c", "epanet-src/qualreact.c",
"epanet-src/smatrix.c", "epanet-src/genmmd.c", "epanet-src/hydsolver.c", "epanet-src/input2.c",
"epanet-src/output.c", "epanet-src/qualroute.c", "epanet-src/hash.c", "epanet-src/hydstatus.c",
"epanet-src/input3.c", "epanet-src/project.c", "epanet-src/report.c", "epanet-msx-src/hash.c",
"epanet-src/flowbalance.c", "epanet-src/leakage.c", "epanet-src/validate.c",
"epanet-src/util/filemanager.c", "epanet-src/util/errormanager.c", "epanet-src/util/cstr_helper.c",
"epanet-msx-src/msxcompiler.c", "epanet-msx-src/msxfuncs.c", "epanet-msx-src/msxqual.c",
"epanet-msx-src/msxutils.c", "epanet-msx-src/smatrix.c", "epanet-msx-src/mathexpr.c",
"epanet-msx-src/msxdispersion.c", "epanet-msx-src/msxinp.c", "epanet-msx-src/msxrpt.c",
"epanet-msx-src/newton.c", "epanet-msx-src/mempool.c", "epanet-msx-src/msxerr.c",
"epanet-msx-src/msxout.c", "epanet-msx-src/msxtank.c", "epanet-msx-src/rk5.c",
"epanet-msx-src/msxchem.c", "epanet-msx-src/msxfile.c", "epanet-msx-src/msxproj.c",
"epanet-msx-src/msxtoolkit.c", "epanet-msx-src/ros2.c"]}
]