forked from hackingmaterials/atomate
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
36 lines (29 loc) · 707 Bytes
/
setup.cfg
File metadata and controls
36 lines (29 loc) · 707 Bytes
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
[build_sphinx]
source-dir = docs/
build-dir = docs/_build
all_files = 1
[upload_sphinx]
upload-dir = docs/_build/html
[aliases]
upload_docs = upload_docs --upload-dir=docs/_build/html
release = register sdist upload
[flake8]
max-line-length = 125
# E203 whitespace before ':'
# W503 line break before binary operator
ignore = E203, W503
per-file-ignores =
# F401: imported but unused
__init__.py: F401
[isort]
profile = black
[tool:pytest]
addopts = --ignore=atomate/qchem/test_files -p no:warnings
[codespell]
ignore-words-list = mater,nin
[autoflake]
in-place = true
remove-unused-variables = true
remove-all-unused-imports = true
expand-star-imports = true
ignore-init-module-imports = true