-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
58 lines (51 loc) · 1.05 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
[bdist_wheel]
universal = 1
[sdist]
formats=bztar
[flake8]
max-line-length = 120
exclude = tests/*,docs/*,examples/*,.env,.tox
[pep8]
max-line-length = 120
exclude = tests/*,docs/*,examples/*,.env,.tox
[tool:pytest]
norecursedirs =
.git
.tox
.env
dist
build
addopts =
-rxEfsw
--strict
--doctest-modules
--doctest-glob=\*.rst
--tb=short
--ignore=docs/conf.py
--ignore=setup.py
--ignore=.eggs
--no-cov-on-fail
--cov=molden_modifier
--cov-report=term-missing
[isort]
multi_line_output = 1
use_parentheses = True
balanced_wrapping = True
# force_single_line = True
line_length = 90
# known_standard_library =
known_first_party = molden_modifier
known_third_party = docopt,pytest
forced_separate = test_molden_modifier
not_skip = __init__.py
verbose = True
skip = .env,.tox
skip_glob = .env/**.py,.tox/**.py
#
import_heading_stdlib=Standard Library
import_heading_firstparty=My Stuff
import_heading_thirdparty=Third Party Libraries
import_heading_localfolder=Local imports
[check-manifest]
ignore =
.coverage