-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (40 loc) · 1.33 KB
/
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
[build-system]
requires = [ "setuptools>=41", "wheel", "setuptools-git-versioning<2", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[project]
name = "clickdc"
description = "Manage click arguments using python dataclass"
readme = "README.md"
authors = [{name = "Kamil Cukrowski"}]
license = {text = "MIT"}
dynamic = ["version", "dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {test = { file = ["requirements-test.txt"] }}
[project.urls]
homepage = "https://github.com/Kamilcuk/clickdc"
repository = "https://github.com/Kamilcuk/clickdc"
documentation = "https://github.com/Kamilcuk/clickdc"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--tb=short"
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s %(levelname)s %(filename)s:%(lineno)s %(message)s"
log_cli_date_format = "%H:%M:%S"
testpaths = ["tests/*"]
filterwarnings = [
"ignore::DeprecationWarning",
]
log_file_format = "%(asctime)s %(levelname)s %(filename)s:%(lineno)s %(message)s"
log_file_level = "DEBUG"
[tool.pyright]
include = ["src", "tests"]
pythonVersion = "3.7"
typeCheckingMode = "basic"
reportUnnecessaryComparison = "error"
reportUnusedParameter = false
reportUnknownParameterType = false
reportInvalidTypeForm = false