forked from MolSSI/QCElemental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (57 loc) · 1.34 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
# Helper file to handle all configs
[coverage:run]
# .coveragerc to control coverage.py and pytest-cov
# Omit the test directory from test coverage
omit =
*/tests/*
qcelemental/_version.py
[tool:isort]
line_length=120
skip_glob =
*/data/nist*
skip=__init__.py
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
multi_line_output=3
[yapf]
# YAPF, in .style.yapf files this shows up as "[style]" header
COLUMN_LIMIT = 119
INDENT_WIDTH = 4
USE_TABS = False
[flake8]
# Flake8, PyFlakes, etc
max-line-length = 119
[versioneer]
# Automatic version numbering scheme
VCS = git
style = pep440
versionfile_source = qcelemental/_version.py
versionfile_build = qcelemental/_version.py
tag_prefix = ''
[aliases]
test=pytest
[mypy]
[mypy-numpy]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-pytest]
ignore_missing_imports = True
[mypy-networkx]
ignore_missing_imports = True
[mypy-pint]
ignore_missing_imports = True
[mypy-mpmath]
ignore_missing_imports = True
[mypy-scipy]
ignore_missing_imports = True
[mypy-msgpack]
ignore_missing_imports = True
[mypy-qcelemental._version]
ignore_errors = True
[mypy-qcelemental.models.molecule]
# Disable all the Optional settings in Molecule since many are handled by the to_schema function
strict_optional = False
[mypy-qcelemental.tests.*]
ignore_errors = True