-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 955 Bytes
/
Copy pathpyproject.toml
File metadata and controls
47 lines (43 loc) · 955 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
46
47
[tool.pdm.build]
includes = [
"toolbox",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [
{name = "Kaziamov", email = "kaziamov@outlook.com"},
]
requires-python = ">=3.9,<4.0"
dependencies = [
"cryptography>=44.0.3",
"fastapi>=0.115.12",
"pre-commit>=4.2.0",
"psycopg2-binary>=2.9.10",
"pydantic>=2.10.6",
"sqlalchemy>=2.0.40",
"sqlalchemy-utils>=0.41.2",
]
name = "hexfrost-toolbox"
version = "0.1.7b"
description = "Open source library with useful utils for fast development"
readme = "README.md"
[dependency-groups]
dev = [
"pytest==8.1.1",
"pytest-asyncio>=0.23.5",
"pytest-mock==3.12.0",
"pytest-cov>=6.0.0",
"pre-commit>=4.1.0",
"anyio[trio]>=3.7.1",
"httpx==0.28.1",
"asyncpg>=0.30.0",
]
[tool.isort]
profile = "black"
line_length = 120
force_sort_within_sections = "False"
order_by_type = "False"
[tool.black]
line-length = 120