-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 946 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
[project]
name = "teampling-main-server"
version = "0.1.0"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi (>=0.129.0,<0.130.0)",
"uvicorn[standard] (>=0.40.0,<0.41.0)",
"pydantic-settings (>=2.12.0,<3.0.0)",
"python-multipart (>=0.0.22,<0.0.23)",
"sqlmodel (>=0.0.37,<0.0.38)",
"pydantic[email] (>=2.12.5,<3.0.0)",
"sqlalchemy-utc (>=0.14.0,<0.15.0)",
"asyncpg (>=0.31.0,<0.32.0)",
"alembic (>=1.18.4,<2.0.0)",
"greenlet (>=3.3.2,<4.0.0)",
"pytest-asyncio (>=1.3.0,<2.0.0)",
"pyjwt (>=2.12.1,<3.0.0)",
"passlib[bcrypt] (>=1.7.4,<2.0.0)",
"bcrypt (<5)",
"oci (>=2.168.1,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
package-mode = false
[dependency-groups]
dev = [
"httpx (>=0.28.1,<0.29.0)"
]