forked from Unidata/MetPy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
45 lines (37 loc) · 921 Bytes
/
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
[flake8]
ignore = F405
max-line-length = 95
exclude = metpy/_version.py
application-import-names = metpy
import-order-style = google
copyright-check = True
copyright-author = MetPy Developers
[tool:pytest]
norecursedirs = build examples docs
flake8-ignore = *.py F405
versioneer.py ALL
flake8-max-line-length = 95
[doc8]
ignore-path = docs/source/examples/generated
max-line-length = 95
[pydocstyle]
match = (?!(test_|versioneer|setup|_version)).*\.py
match-dir = (?!(build|docs|examples))[^.].*
[metadata]
description-file = README.rst
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and 3.
universal=1
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all-files = True
[versioneer]
VCS = git
style = pep440
versionfile_source = metpy/_version.py
versionfile_build = metpy/_version.py
tag_prefix = v
parentdir_prefix = metpy-
[aliases]
test = pytest