-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 864 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
[project]
name = "jaddek_tillo_sdk"
version = "0.1.0"
description = "Tillo SDK"
authors = [
{ name = "Anton Nazarov", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"httpx[http2]>=0.28.1,<0.29.0",
]
[dependency-groups]
dev = [
"pre-commit>=4.1.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.25.3",
"pytest-mock>=3.14.0",
"ruff>=0.9.4",
]
[project.urls]
Homepage = "https://github.com/jaddek/tillo-sdk-python"
[tool.bumpversion]
allow_dirty = false
commit = true
tag = true
message = "Bump version: {current_version} → {new_version}"
pre_commit_hooks = ["uv sync", "uv run ruff check", "git add uv.lock"]
commit_args = ""
[tool.bumpversion.files]
filename = "VERSION"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
pythonpath = ["."]