-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.39 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src/"]
[tool.setuptools.package-data]
"*" = ["*.txt"]
[project]
name = "komanawa-gw-detect-power"
dynamic = ["version"] # version set in version.py
authors = [
{ name = "Matt Dumont", email = "[email protected]" },
]
description = "A package to estimate the detection power of a groundwater monitoring network including the effects of groundwater travel processes (lag), sampling noise, and other unexplained sample varience."
readme = "README.rst"
license = { file = "LICENSE" }
requires-python = ">=3.11"
dependencies = [
"pandas>=2.0.3",
"numpy>=1.25.2",
"scipy>=1.11.2",
"tables>=3.8.0",
'psutil>=5.9.5',
'komanawa-kendall-stats>=2.0.0',
'komanawa-gw-age-tools>=2.0.0',
'pyhomogeneity>=1.1.0',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: LGPL-3.0 License",
"Operating System :: OS Independent",
]
[tool.setuptools.dynamic]
version = {attr = "komanawa.gw_detect_power.version.__version__"}
[project.urls]
Homepage = "https://github.com/Komanawa-Solutions-Ltd/komanawa-gw-detect-power"
Issues = "https://github.com/Komanawa-Solutions-Ltd/komanawa-gw-detect-power/issues"
Documentation = "https://komanawa-solutions-ltd.github.io/komanawa-gw-detect-power/"