-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
67 lines (61 loc) · 1.23 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
[metadata]
name = SPCartopy
version = attr: spcartopy.__version__
author = Nathan Wendt
author_email = [email protected]
description = Add SPC products to cartopy maps.
license = BSD-3-Clause
license_file = LICENSE
[build-system]
requires = ["setuptools"]
[options]
package_dir=
=src
packages=find:
setup_requires =
setuptools
install_requires =
cartopy
fiona
matplotlib
shapely >= 1.8
[options.packages.find]
where = src
[options.extras_require]
lint =
flake8
pycodestyle
pyflakes
flake8-bugbear
flake8-builtins
flake8-comprehensions
flake8-continuation
flake8-copyright
flake8-isort
isort
flake8-mutable
flake8-pie
flake8-print
flake8-quotes
flake8-requirements
flake8-simplify
flake8-docstrings
pep8-naming
pydocstyle
test =
pytest
pytest-mpl
[flake8]
max-line-length = 95
application-import-names = mdgpu
import-order-style = google
copyright-check = True
copyright-author = Nathan Wendt
inline-quotes = single
multiline-quotes = double
docstring-convention = numpy
select = A B C D E F G H I J K L M N O P Q R S T U V W X Y Z B902
ignore = F405 W503 RST902 SIM106 PIE786
per-file-ignores =
__init__.py:F401
patheffects.py:N803