forked from openforcefield/openff-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
103 lines (77 loc) · 1.96 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
92
93
94
95
96
97
98
99
100
101
102
103
# Helper file to handle all configs
[tool:pytest]
doctest_optionflags =
ELLIPSIS
DONT_ACCEPT_TRUE_FOR_1
NORMALIZE_WHITESPACE
testpaths = openff/toolkit/_tests/
[coverage:run]
# .coveragerc to control coverage.py and pytest-cov
omit =
# Omit the tests
*/*/_tests/*
# Omit generated versioneer
openff/toolkit/_version.py
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
@overload
[versioneer]
# Automatic version numbering scheme
VCS = git
style = pep440
versionfile_source = openff/toolkit/_version.py
versionfile_build = openff/toolkit/_version.py
tag_prefix = ''
# TODO: parentdir_prefix is left empty in the cookiecutter setup.cfg.
parentdir_prefix = openff-toolkit-
[mypy]
plugins = numpy.typing.mypy_plugin
warn_unused_configs = True
warn_unused_ignores = True
show_error_codes = True
check_untyped_defs = True
exclude = openff/toolkit/_tests/|openff/toolkit/data/
[mypy-openff.units]
ignore_missing_imports = True
[mypy-openff.units.*]
ignore_missing_imports = True
[mypy-openff.nagl.*]
ignore_missing_imports = True
[mypy-openff.nagl_models.*]
ignore_missing_imports = True
[mypy-mdtraj]
ignore_missing_imports = True
[mypy-openmm]
ignore_missing_imports = True
[mypy-openmm.app]
ignore_missing_imports = True
[mypy-openmm.unit]
ignore_missing_imports = True
[mypy-rdkit]
ignore_missing_imports = True
[mypy-rdkit.Chem]
ignore_missing_imports = True
[mypy-rdkit.Chem.Draw]
ignore_missing_imports = True
[mypy-rdkit.DataStructs.cDataStructs]
ignore_missing_imports = True
[mypy-openeye]
ignore_missing_imports = True
[mypy-openeye.oechem]
ignore_missing_imports = True
[mypy-parmed]
ignore_missing_imports = True
[mypy-msgpack]
ignore_missing_imports = True
[mypy-qcelemental]
ignore_missing_imports = True
[mypy-nglview]
ignore_missing_imports = True
[mypy-nglview.base_adaptor]
ignore_missing_imports = True
[mypy-cached_property]
ignore_missing_imports = True
[mypy-constraint]
ignore_missing_imports = True