-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (43 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (43 loc) · 1.3 KB
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
[project]
name = "cli_wrapper"
description = "Tool to represent CLI tools as native python objects"
authors = [{ name = "Reid Orsten", email = "rorsten@gmail.com"}]
maintainers = [{ name = "Reid Orsten", email = "rorsten@gmail.com"}]
readme = "README.md"
requires-python = ">=3.10"
license = "LGPL-3.0-or-later"
dependencies = [
"attrs",
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=61.0", "build", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project.optional-dependencies]
test = ["pytest", "pytest-cov", "pytest-asyncio", "pytest-xdist", "ruamel.yaml", "dotted_dict", "black", "pylint"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 120
[tool.coverage.run]
branch = true
[tool.setuptools-git-versioning]
enabled = true
[tool.pylint.messages_control]
disable = ["logging-fstring-interpolation"]
max-line-length = 120
[tool.pytest.ini_options]
log_level = "DEBUG"
log_cli = "true"
testpaths = ["tests"]
pythonpath = "src"
addopts = "-n 4 -Walways --cov=cli_wrapper --cov-branch --cov-report html:coverage"
asyncio_default_fixture_loop_scope = "function"
[tool.pylint."messages control"]
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"logging-fstring-interpolation",
"fixme"
]