-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (43 loc) · 1012 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
[tool.poetry]
name = "app-utils"
version = "0.4.14"
description = ""
authors = ["Julien Brayere <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
piou = "^0.12.14"
rich = "^12.6.0"
cairosvg = "^2.5.2"
httpx = "^0.23.0"
pyjwt = {extras = ["crypto"], version = "^2.6.0"}
[tool.poetry.group.dev.dependencies]
commitizen = "^2.37.0"
pyright = "^1.1.244"
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.4.14"
tag_format = "$version"
version_files = [
"pyproject.toml:version"
]
bump_message = "release $current_version → $new_version [skip ci]"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--cov=app_utils -s -q -x --no-cov-on-fail"
testpaths = [
"tests"
]
python_files = "*.py"
[tool.pyright]
include = [
"app_utils", "run.py"
]
exclude = []
pythonVersion = "3.10"
pythonPlatform = "Linux"
[tool.poetry.scripts]
cli = 'run:run'