-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
91 lines (85 loc) · 2.33 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
91
[flake8]
# References:
# https://flake8.readthedocs.io/en/latest/user/configuration.html
# https://flake8.readthedocs.io/en/latest/user/error-codes.html
# https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# https://gitlab.com/pycqa/flake8-docstrings
max-line-length = 88
docstring-convention = numpy
select = C,D,E,F,W,B,B950
ignore =
# E203: whitespace before ':'
E203,
# E226: missing whitespace around arithmetic operator
E226,
# E231: missing whitespace after ',', ';', or ':'
E231,
# E402: module level imports on one line
E402,
# E501: line too long
E501,
# E731: do not assign a lambda expression, use a def
E731,
# W503: line break before binary operator
W503,
# W504: line break after binary operator
W504
exclude =
.eggs
build
[metadata]
author = pp-mo
author_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
description = Check netcdf files for conformance with UGRID specifications
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
mesh
ugrid
license = BSD 3-Clause License
license_file = LICENSE
name = ugrid-checks
project_urls =
Code = https://github.com/pp-mo/ugrid-checks
Discussions = https://github.com/pp-mo/ugrid-checks/discussions
Documentation = https://github.com/pp-mo/ugrid-checks
Issues = https://github.com/pp-mo/ugrid-checks/issues
url = https://github.com/pp-mo/ugrid-checks
version = attr: ugrid_checks.__version__
[options]
include_package_data = False
install_requires =
netCDF4
package_dir =
=lib
packages = find:
python_requires =
>=3.7
zip_safe = False
[options.extras_require]
dev =
pre-commit
test =
pytest>=6.0
[options.packages.find]
where = lib
[options.entry_points]
console_scripts =
ugrid-checker = ugrid_checks.cli:call_cli
[tool:pytest]
testpaths =
lib/ugrid_checks/tests
addopts =
-v