forked from glotzerlab/signac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
47 lines (34 loc) · 968 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
46
47
[bumpversion]
current_version = 1.4.0
commit = True
tag = False
message = Bump up to version {new_version}.
[metadata]
description-file = README.md
[bdist_wheel]
python-tag = py3
[flake8]
max-line-length = 100
exclude = configobj,passlib,cite.py,conf.py
[pydocstyle]
# Skip these files:
match = ^((?!\.sync-zenodo-metadata|setup|benchmark|mpipool|connection|crypt|host|filesystems|indexing).)*\.py$
# Skip these directories:
match-dir = ^((?!doc|tests|configobj|db).)*$
# Skip deprecated methods:
ignore-decorators = "deprecated"
ignore = D105, D107, D203, D204, D213
[mypy]
ignore_missing_imports = True
[coverage:run]
source = signac
omit =
*/signac/common/configobj/*.py
[tool:pytest]
filterwarnings =
ignore: .*[The indexing module | get_statepoint] is deprecated.*: DeprecationWarning
[bumpversion:file:setup.py]
[bumpversion:file:signac/version.py]
[bumpversion:file:doc/conf.py]
[bumpversion:file:CITATION.cff]
[bumpversion:file:.zenodo.json]