-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
51 lines (47 loc) · 1.34 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
[metadata]
name = mplotutils
description = utilities for matplotlib and cartopy
author = mathause
author_email = [email protected]
license = GPLv3
url = https://github.com/mathause/mplotutils
long_description_content_type=text/markdown
long_description = file: README.md
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.10
install_requires =
cartopy >=0.22
matplotlib >=3.8
numpy >=1.24
xarray >=2023.9
[flake8]
ignore=
# E203: whitespace before ':' - doesn't work well with black
# E402: module level import not at top of file
# E501: line too long - let black worry about that
# E731: do not assign a lambda expression, use a def
# W503: line break before binary operator
E203, E402, E501, E731, W503
exclude =
build
docs
.git
[isort]
profile = black
known_first_party = mplotutils
[coverage:run]
omit =
*/tests/*,