-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (47 loc) · 1.41 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
48
49
50
51
52
53
54
55
[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"