-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
94 lines (73 loc) · 1.81 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
[metadata]
name = yammbs
version = 0.0.0
description = Internal benchmarking storage tools
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mattwthompson/ib
author = Open Force Field Initiative
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
[options]
packages = find:
[options.packages.find]
exclude =
tests*
testing*
[coverage:run]
omit =
yammbs/_tests/*
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
if TYPE_CHECKING:
raise NotImplementedError
[flake8]
max-line-length = 119
ignore = E203
per-file-ignores =
yammbs/__init__.py:F401
[isort]
profile = black
[mypy]
plugins = pydantic.mypy,sqlmypy
warn_unused_configs = True
warn_unused_ignores = True
warn_incomplete_stub = True
show_error_codes = True
[mypy-openeye]
ignore_missing_imports = True
[mypy-rdkit.Chem]
ignore_missing_imports = True
[mypy-openff.toolkit.*]
ignore_missing_imports = True
[mypy-openff.nagl.toolkits.openff]
ignore_missing_imports = True
[mypy-espaloma]
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-openmmforcefields.generators]
ignore_missing_imports = True
[mypy-sqlalchemy]
ignore_missing_imports = True
[mypy-sqlalchemy.orm]
ignore_missing_imports = True
[mypy-geometric.*]
ignore_missing_imports = True
[mypy-qcelemental]
ignore_missing_imports = True
[mypy-openff.qcsubmit.results]
ignore_missing_imports = True