This repository has been archived by the owner on Jun 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
97 lines (84 loc) · 1.45 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
[version]
target = 0.2
release = 0.2.1
[metadata]
name = perfsprocket
description = Manipulate file sequences with ease!
author = Billy Peake
[options]
setup_requires =
setuptools
install_requires =
dataclasses
typing_extensions
tests_require =
pytest
dependency_links =
[options.extras_require]
dev =
black
autopep8
lint =
black
flake8
mypy
doc =
sphinx
sphinx-autodoc-typehints
sphinx_rtd_theme
build =
twine
wheel
test =
pytest-sugar
pytest-cov
pytest-html
[flake8]
max-line-length = 88
max-complexity = 10
exclude =
*/venvs/*,
docs/conf.py,
build,
dist,
.git,
__pycache__,
tests,
.tox,
.eggs,
.coverage,
*.egg,
*_cache
tests/_reports
zdevelop/scratch
[pep8]
max-line-length = 88
[mypy]
ignore_missing_imports = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
show_error_context = True
no_implicit_optional = True
warn_redundant_casts = True
[mypy-pytest,setuptools]
ignore_missing_imports = True
[mypy-zdevelop.scratch.*]
ignore_errors = True
[tool:pytest]
testpaths = zdevelop/tests
addopts =
--cov
--cov-report=html
--cov-report=xml:zdevelop/tests/_reports/coverage.xml
--html=zdevelop/tests/_reports/test_results.html
--self-contained-html
[coverage:run]
source = perfsprocket
[coverage:html]
directory = zdevelop/tests/_reports/coverage
title = coverage report for perfsprocket
[build_sphinx]
project = perfsprocket
copyright = '2018, Illuscio'
source-dir = ./zdocs/source
build-dir = ./zdocs/build