-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (40 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jpy-tillo-sdk"
version = "0.2.1"
description = "The package for developers to interact with the Tillo APIv2"
authors = [
{ name = "Anton Nazarov", email = "tonynazarov@gmail.com" }
]
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
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/jpy-tillo-sdk"
Issues = "https://github.com/jaddek/jpy-tillo-sdk/issues"
[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 = ["."]