-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
135 lines (113 loc) · 3.34 KB
/
pyproject.toml
File metadata and controls
135 lines (113 loc) · 3.34 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
[build-system]
requires = ["setuptools", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pymf6"
description = "High-level Python Wrapper for MODFLOW 6"
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"MODFLOW6",
"groundwater",
"modeling",
"dynamic boundary condition"
]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Framework :: Jupyter :: JupyterLab",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology"
]
dependencies = ["modflowapi"]
dynamic = ["version"]
[project.scripts]
pymf6 = "pymf6.main:main"
[project.urls]
homepage = "https://github.com/hydrocomputing/pymf6"
documentation = "https://pymf6.readthedocs.io/en/latest/index.html"
repository = "https://github.com/hydrocomputing/pymf6"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests"]
[tool.setuptools.package-dir]
pymf6 = "src/pymf6"
[tool.setuptools_scm]
write_to = "src/pymf6/_version.py"
[tool.pixi.project]
channels = ["hydrocomputing", "conda-forge"]
platforms = ["osx-arm64"]
[tool.pixi.dependencies]
pandas = "*"
matplotlib = "*"
xmipy = "*"
modflowapi = ">=0.3.0,<0.4"
[tool.pixi.pypi-dependencies]
pymf6 = { path = ".", editable = true }
[tool.pixi.environments]
default = { solve-group = "default" }
test = { features = ["test"], solve-group = "default" }
analytic = { features = ["test", "analytic"], solve-group = "default" }
develop = { features = ["develop"], solve-group = "default" }
conda = ["conda"]
[tool.pixi.tasks]
[tool.pixi.feature.test.dependencies]
python = ">=3.13,<3.14"
matplotlib = "*"
pytest = ">=8.2.2,<8.3"
jupyterlab = "*"
pip = ">=24.0,<25"
ipywidgets = "*"
matplotlib-inline = ">=0.1.7,<0.2"
ipympl = ">=0.9.5,<0.10"
# [tool.pixi.feature.test.pypi-dependencies]
[tool.pixi.feature.analytic.dependencies]
python = ">=3.13,<3.14"
ttim = "*"
numpy = "*"
scipy = "*"
numba = "*"
matplotlib = "*"
lmfit = "*"
pandas = "*"
[tool.pixi.feature.analytic.pypi-dependencies]
timml = "*"
[tool.pixi.feature.develop.dependencies]
python = ">=3.13,<3.14"
matplotlib = "*"
pytest = ">=8.2.2,<8.3"
jupyterlab = "*"
pip = ">=24.0,<25"
xmipy = "*"
pandas = "*"
myst-nb = "*"
jupytext = "*"
setuptools_scm = "*"
recommonmark = "*"
git = "*"
jupyterlab-spellchecker = "*"
pytables = ">=3.10.2,<4"
pooch = "*"
[tool.pixi.feature.develop.pypi-dependencies]
pymf6-tools = { path = "../pymf6-tools", editable = true }
jbmagics = { path = "../../jbmagics", editable = true }
modflowapi = { path = "../../modflow/modflowapi/orig/modflowapi", editable = true }
lxml_html_clean = "*"
[tool.pixi.feature.conda.dependencies]
conda-build = "*"
setuptools = "*"
setuptools-scm = "*"
[tool.pixi.feature.conda.tasks]
set-version = { cmd = "python -m setuptools_scm --force-write-version-files", description = "set version with setuptools-scm"}
build = { cmd = "conda-build -c conda-forge pymf6", cwd = "conda_package", description = "build conda package"}