-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
80 lines (71 loc) · 2.04 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
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pypestutils"
dynamic = ["version"]
authors = [
{name = "Jeremy White", email = "jtwhite1000@gmail.com"},
{name = "Mike Taves", email = "mwtoews@gmail.com"},
]
readme = "README.md"
description = "PEST utilities for MODFLOW"
keywords = ["PEST", "MODFLOW", "groundwater", "model"]
license = {text = "Unlicense"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Fortran",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
]
[project.optional-dependencies]
optional = [
"flopy",
"pyemu",
]
test = [
"pytest",
]
[project.urls]
Repository = "https://github.com/pypest/pypestutils"
[tool.setuptools]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "pypestutils.version.__version__"}
[tool.setuptools.packages.find]
include = ["pypestutils", "pypestutils.*"]
[tool.cibuildwheel]
build = "cp39-*"
build-verbosity = 3
repair-wheel-command = "python scripts/repair_wheel.py -w {dest_dir} {wheel}"
test-requires = "tox"
test-command = "tox --conf {project} --installpkg {wheel}"
test-skip = [
"*-musllinux*",
"*aarch64", # slow!
]
# see also CIBW_ENVIRONMENT_MACOS in release.yml
before-build = [
"pip install meson ninja wheel",
"bash {project}/scripts/build_lib.sh",
]
[tool.cibuildwheel.windows]
before-build = "pip install wheel"
[tool.isort]
profile = "black"