-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 922 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
norecursedirs = "tests/helpers"
[tool.pylint.format]
max-line-length = 120
[tool.autopep8]
max_line_length = 120
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py311,mypy,doc
[testenv]
deps =
pytest
pytest-cov
cmd2_ext_test
commands = pytest
[testenv:mypy]
deps =
mypy
ratelimit-stubs
types-python-dateutil
types-requests
types-urllib3
commands = mypy -p showtime
[testenv:doc]
deps = interrogate
skip_install = true
commands = interrogate --quiet --fail-under 80 showtime
"""
[tool.interrogate]
ignore-init-method = true
ignore-init-module = false
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = false
fail-under = 95
exclude = ["setup.py", "docs"]
verbose = 0
quiet = false
[tool.mypy]
plugins = "tinydb.mypy_plugin"