-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
58 lines (52 loc) · 1.08 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
[tool.poetry]
name = "btp-llm-github-pull-analyzer"
version = "1.0.0"
description = "A program to analyze GitHub pull requests via BTP LLM."
authors = ["SAP"]
readme = "README.md"
repository = "https://github.tools.sap/sap-samples/btp-llm-github-pull-analyzer"
[tool.poetry.dependencies]
aiohttp = "^3.9.3"
flake8 = ">=7.0.0"
requests = "^2.31.0"
python = ">3.11,<4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-aiohttp = "^1.0.5"
pytest-asyncio = "^0.23.5"
[tool.pytest.ini_options]
minversion = "7.2.2"
addopts = "--no-header -v"
testpaths = [
"tests"
]
log_cli = true
log_level = 'DEBUG'
[tool.black]
py36 = true
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
)/'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.3.54"
tag_format = "$version"
version_files = [
"pyproject.toml:version",
"program/__version__.py"
]