-
Notifications
You must be signed in to change notification settings - Fork 97
/
pyproject.toml
72 lines (66 loc) · 1.63 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
[build-system]
requires = [
"setuptools >= 61",
'tomli; python_version < "3.11"',
]
build-backend = "setuptools.build_meta"
[project]
name = "pyemu"
dynamic = ["version"]
authors = [
{ name = "Jeremy White", email = "[email protected]" },
{ name = "Mike Fienen", email = "[email protected]" },
{ name = "Brioch Hemmings", email = "[email protected]" },
]
description = "pyEMU is a set of python modules for interfacing with PEST and PEST++"
readme = "README.md"
keywords = ["pest", "pestpp"]
license = { text = "BSD 3-Clause" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"pandas",
]
[project.optional-dependencies]
optional = [
"flopy",
"matplotlib",
"pyshp",
"scipy",
"shapely",
"jinja2" # for to_latex options
]
test = [
"coveralls",
"pytest",
"pytest-cov",
"pytest-xdist",
"flaky",
"nbmake",
"modflow-devtools",
]
docs = [
"pyemu[optional]",
"sphinx <7.2", # sphinx 7.2 challenges with iterating over CSS
"sphinx-autoapi",
"sphinx-rtd-theme >=1.3.0rc1",
]
[project.scripts]
get-pestpp = "pyemu.utils.get_pestpp:cli_main"
[project.urls]
documentation = "https://pyemu.readthedocs.io/"
repository = "https://github.com/pypest/pyemu"
[tool.setuptools.packages.find]
include = ["pyemu", "pyemu.*"]
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "pyemu/_version.py"
versionfile_build = "pyemu/_version.py"
tag_prefix = ""