-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (56 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
64 lines (56 loc) · 1.31 KB
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
59
60
61
62
63
64
[project]
name = "auth"
version = "1.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Anton Akuev" }
]
requires-python = ">=3.12"
dependencies = [
"click>=8.2.1",
"dishka>=1.6.0",
"psycopg[binary,pool]>=3.3.2",
"structlog>=25.4.0",
"uuid6>=2025.0.1",
]
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
]
lint = [
"mypy>=1.18.2",
"ruff>=0.13.2",
]
web = [
"alembic>=1.16.5",
"bcrypt>=4.3.0",
"fastapi>=0.116.1",
"prometheus-fastapi-instrumentator>=7.1.0",
"python-multipart>=0.0.20",
"sqlalchemy>=2.0.43",
"uvicorn>=0.35.0",
]
worker = [
"taskiq>=0.11.18",
"taskiq-aio-pika>=0.4.3",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project.scripts]
auth-web = "auth.bootstrap.web.cli:main"
auth-worker = "auth.bootstrap.worker.cli:main"
[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
version_source = "tag"
upload_to_pypi = false
commit_message = "chore(release): v{version}"
[tool.semantic_release.commit_parser_options]
ignore_merge_commits = false
#[tool.semantic_release.remote]
#type = "gitlab"
#token = { env = "GITLAB_TOKEN" }
#domain = "https://gitlab.com"
[tool.setuptools.package-data]
"auth.infrastructure.persistence.alembic" = ["alembic.ini"]