forked from MODFLOW-USGS/modflowapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
90 lines (85 loc) · 2.06 KB
/
setup.cfg
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
[metadata]
name = modflowapi
version = attr: modflowapi.version.__version__
description = modflowapi is an extension to the xmipy Python package
long_description = file: README.md
long_description_content_type = text/markdown
author = Joseph D. Hughes, Martijn Russcher, Christian D. Langevin, Julian Hofer, Joshua D. Larsen
author_email = [email protected], [email protected], [email protected], [email protected], [email protected]
maintainer = Joseph D. Hughes
maintainer_email = [email protected]
license = CC0
license_files = LICENSE
platform = Windows, Mac OS-X, Linux
keywords = MODFLOW, groundwater, hydrogeology
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: Unix
Operating System :: MacOS
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Hydrology
url = https://github.com/MODFLOW-USGS/modflowapi
download_url = https://pypi.org/project/modflowapi/
[options]
zip_safe = False
packages = find:
python_requires = >=3.8
install_requires =
numpy
pandas
xmipy @ git+https://[email protected]/Deltares/xmipy@develop
[options.extras_require]
lint =
black
flake8
pylint
requests
test =
%(lint)s
pytest
pytest-xdist
pytest-order
filelock
modflow-devtools @ git+https://[email protected]/MODFLOW-USGS/modflow-devtools@develop
[flake8]
exclude =
.git,
__pycache__,
build,
dist,
examples,
autotest
ignore =
F401,
E121,
E122,
E126,
E127,
E128,
E203,
E221,
E222,
E226,
E231,
E241,
E402,
E501,
E502,
E722,
E741,
W291,
W292,
W293,
W391,
W503,
W504
statistics = True