-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
73 lines (67 loc) · 1.58 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
[build-system]
requires = [
"setuptools >= 61",
'tomli; python_version < "3.11"'
]
build-backend = "setuptools.build_meta"
[project]
name = "modflow-export"
dynamic = ["version"]
authors = [
{ name = "Andrew Leaf", email = "[email protected]" },
{ name = "Mike Fienen", email = "[email protected]" },
]
description = "Fast & easy summarizing of MODFLOW data and export to GIS file formats"
readme = "Readme.md"
keywords = ["MODFLOW", "groundwater", "hydrogeology"]
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.10"
dependencies = [
"gis-utils",
"fiona",
"flopy",
"matplotlib",
"numpy",
"pandas",
"pyproj",
"pyyaml",
"rasterio",
"shapely",
"xarray",
]
[project.optional-dependencies]
optional = [
]
test = [
"codecov",
"coverage",
"pytest",
]
docs = [
"modflow-export[optional]",
"ipython[kernel]",
"sphinx",
"numpydoc",
"nbsphinx",
"sphinx-copybutton",
"sphinx-rtd-theme"
]
[project.scripts]
get-modflow = "flopy.utils.get_modflow:cli_main"
[project.urls]
documentation = "https://aleaf.github.io/modflow-export/latest/"
repository = "https://github.com/aleaf/modflow-export"
[tool.setuptools.packages.find]
include = ["mfexport", "mfexport.*"]
[tool.versioneer]
VCS = "git"
style = "pep440-post"
versionfile_source = "mfexport/_version.py"
versionfile_build = "mfexport/_version.py"
tag_prefix = "v"