forked from mwtoews/surface-water-network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
56 lines (53 loc) · 1.63 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
[metadata]
name = surface-water-network
version = attr: swn._version.version
description = Surface water network
long_description = file: README.md
long_description_content_type = text/markdown
author = Mike Taves
author_email = [email protected]
maintainer = Mike Taves
maintainer_email = [email protected]
license = BSD
license_files = LICENSE
platform = any
keywords = surface water, groundwater, MODFLOW, flopy
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Topic :: Scientific/Engineering :: Hydrology
url = https://github.com/mwtoews/surface-water-network
download_url = https://pypi.org/project/surface-water-network/
project_urls =
Documentation = https://mwtoews.github.io/surface-water-network/
Bug Tracker = https://github.com/mwtoews/surface-water-network/issues
Source Code = https://github.com/mwtoews/surface-water-network
[options]
packages = find:
python_requires = >=3.6
install_requires =
geopandas
pyproj >= 2.2
rtree
shapely
[options.packages.find]
exclude =
tests
[flake8]
exclude =
.git,
__pycache__,
build,
dist
ignore =
# https://flake8.pycqa.org/en/latest/user/error-codes.html
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
E126, # continuation line over-indented for hanging indent
E226, # missing whitespace around arithmetic operator
E241, # multiple spaces after ','
W504 # line break after binary operator
statistics = True