generated from opencinemac/occlib-py
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
119 lines (102 loc) · 1.95 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[version]
target = 0.1
release = 0.1.0
[testing]
coverage_required = 1.0
[metadata]
name = vtc
description = A SMTPE video timecode library for Python
author = Billy Peake
url = https://github.com/opencinemac/vtc-py
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Topic :: Multimedia
Topic :: Multimedia :: Video
Topic :: Multimedia :: Video :: Non-Linear Editor
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
[options]
setup_requires =
setuptools
install_requires =
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-cov
pytest-sugar
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
zdocs/source
README.md
addopts =
--cov
--cov-report=html
--cov-report=xml:zdevelop/tests/_reports/coverage.xml
--html=zdevelop/tests/_reports/test_results.html
--self-contained-html
--doctest-modules
--doctest-glob="*.rst"
--doctest-glob="*.md"
[coverage:run]
source = vtc
[coverage:html]
directory = zdevelop/tests/_reports/coverage
title = coverage report for vtc
[build_sphinx]
project = vtc
copyright = '2021, Open Cinema Collective'
source-dir = ./zdocs/source
build-dir = ./zdocs/build