-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 868 Bytes
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
[project]
name = "srsim"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"aiosqlite>=0.20.0",
"alembic>=1.13.0",
"fastapi>=0.121.1",
"pydantic-settings>=2.12.0",
"sqlalchemy[asyncio]>=2.0.0",
]
[dependency-groups]
dev = [
"commitizen>=4.13.9",
"cz-conventional-gitmoji>=0.7.0",
"httpx>=0.28.1",
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"ruff>=0.14.7",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py313"
[tool.ruff.lint]
select = ["I"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.commitizen]
name = "cz_gitmoji"
version_provider = "uv"
annotated_tag = true
tag_format = "v$version"
bump_message = "🔖 bump: release $current_version → $new_version"