-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
94 lines (86 loc) · 1.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = [
"setuptools >= 61",
#"wheel"
'tomli; python_version < "3.11"'
]
build-backend = "setuptools.build_meta"
[project]
name = "modflow-setup"
dynamic = ["version"]
authors = [
{ name = "Andrew Leaf", email = "aleaf@usgs.gov" },
{ name = "Mike Fienen", email = "mnfienen@usgs.gov" },
]
description = "Rapid and robust construction of MODFLOW groundwater flow models"
readme = "Readme.md"
keywords = ["MODFLOW", "groundwater", "hydrogeology"]
license = {file = "LICENSE.md"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Hydrology",
]
requires-python = ">=3.10"
dependencies = [
"geopandas",
"gis-utils",
"fiona",
"flopy",
"modflow-export",
"netcdf4",
"numpy",
"pandas",
"pyproj",
"pyyaml",
"rasterio",
"rasterstats",
"rtree",
"scipy",
"sfrmaker",
"shapely",
"xarray",
]
[project.optional-dependencies]
optional = [
"matplotlib",
]
test = [
"codecov",
"coverage",
"pytest",
"pytest-timeout"
]
docs = [
"matplotlib",
"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://doi-usgs.github.io/modflow-setup/latest/"
repository = "https://github.com/doi-usgs/modflow-setup"
[tool.setuptools.packages.find]
include = ["mfsetup", "mfsetup.*"]
[tool.versioneer]
VCS = "git"
style = "pep440-post"
versionfile_source = "mfsetup/_version.py"
versionfile_build = "mfsetup/_version.py"
tag_prefix = "v"
parentdir_prefix = "mfsetup-"
[tool.isort]
default_section = "THIRDPARTY"
known_first_party = ["xarray"]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88