-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.28 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
[project]
authors = [{name = "Mike Müller", email = "mmueller@hydrocomputing.com"}]
dependencies = []
name = "pymf6-validation"
requires-python = ">= 3.11"
version = "0.1.0"
readme = "README.md"
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"
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[tool.pixi.workspace]
channels = ["hydrocomputing", "conda-forge"]
platforms = ["win-64", "linux-64", "osx-arm64"]
[tool.pixi.dependencies]
python = "3.13.*"
jupyterlab = ">=4.4.3,<5"
pytest = ">=8.4.1,<9"
pymf6-tools = ">=0.1.3,<0.2"
[tool.pixi.pypi-dependencies]
pymf6_validation = { path = ".", editable = true }
[tool.pixi.tasks]