-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
61 lines (55 loc) · 1.03 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
[metadata]
name = gempakIO
version = attr: gempakio.__version__
author = Nathan Wendt
author_email = nathan.wendt@noaa.gov
description = Read GEMPAK data with pure Python.
license = BSD-3-Clause
license_file = LICENSE
[build-system]
requires = ["setuptools"]
[options]
zip_safe = True
package_dir=
=src
packages=find:
python_requires = >=3.9
setup_requires =
setuptools
install_requires =
numpy
pandas
pyproj
xarray
[options.packages.find]
where = src
[options.extras_require]
line =
flake8
ruff
pycodestyle
pyflakes
flake8-continuation
flake8-copyright
flake8-isort
isort
flake8-requirements
pydocstyle
test =
pytest
pytest-cov
[pycodestyle]
ignore = W503
max-line-length = 95
[flake8]
max-line-length = 95
application-import-names = gempakio
import-order-style = google
copyright-check = True
copyright-author = Nathan Wendt
select = E301 E302 E303 E304 E305 E306 I R
ignore = F405 W503 RST902 SIM106
per-file-ignores =
__init__.py:F401
exclude =
examples/*.py