-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
72 lines (61 loc) · 1.64 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
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
[tool.poetry]
name = "cc-codechecker"
version = "0.1.13"
description = "Facilities to manage coding challenges."
authors = ["Daniele Tentoni <daniele.tentoni.1996@gmail.com>"]
keywords = ['coding', 'challenge', 'yaml', 'project', 'facilities']
license = "GPL-3.0-only"
maintainers = ["Daniele Tentoni <daniele.tentoni.1996@gmail.com>"]
readme = 'README.rst'
[tool.poetry.scripts]
cc-codechecker = 'cc_codechecker.codechecker:main'
[tool.poetry.dependencies]
python = "^3.10.0"
PyYAML = "^6.0"
python-semantic-release = "^9.0.0"
[tool.poetry.dev-dependencies]
bandit = "^1.7.1"
coverage = {extras = ["toml"], version = "^7.0.0"}
isort = "^5.10.1"
mypy = "^1.0.0"
pre-commit = "^3.0.0"
pydocstyle = "^6.1.1"
pylint = "^3.0.0"
pytest = "^8.0.0"
pytest-cov = "^4.0.0"
reuse = "^3.0.0"
types-PyYAML = "^6.0.4"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.coverage.run]
omit = [
"cc_codechecker/__main__.py",
]
[tool.semantic_release]
branch = 'main'
build_command = 'poetry build'
major_on_zero = false
version_variable = [
"cc_codechecker/__init__.py:__version__",
"pyproject.toml:version"
]
[tool.isort]
color_output = true
import_heading_firstparty = 'Codechecker'
import_heading_stdlib = 'Standard Library'
include_trailing_comma = true
indent = 2
multi_line_output = 3
[tool.pylint]
[tool.pylint.'BASIC']
docstring-min-length = 10
no-docstring-rgx = "(__.*__|main|test.*|.*test|.*Test)$"
[tool.pylint.'FORMAT']
indent-string = ' '
max-line-length = 80
max-module-lines = 1000
[tool.pylint.STRING]
check-quote-consistency = true
[tool.pylint.VARIABLE]
init-import = false