-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.19 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
[project]
name = "backend"
version = "0.1.0"
description = ""
authors = [
{name = "chilln",email = "kimjihan77@naver.com"}
]
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"fastapi[standard] (>=0.115.12,<0.116.0)",
"uvicorn (>=0.34.2,<0.35.0)",
"pydantic (>=2.11.5,<3.0.0)",
"prometheus-fastapi-instrumentator (>=7.1.0,<8.0.0)",
"httpx (>=0.28.1,<0.29.0)",
"certifi (>=2025.4.26,<2026.0.0)",
"requests (>=2.32.3,<3.0.0)",
"sqlalchemy (>=2.0.41,<3.0.0)",
"psycopg2-binary (>=2.9.10,<3.0.0)",
"pydantic-settings (>=2.9.1,<3.0.0)",
"google-cloud-vision (>=3.10.2,<4.0.0)",
"jose (>=1.0.0,<2.0.0)",
"python-jose (>=3.5.0,<4.0.0)",
"pyjwt[crypto] (>=2.10.1,<3.0.0)",
"bcrypt (>=4.3.0,<5.0.0)",
"selenium (>=4.33.0,<5.0.0)",
"pytest (>=8.4.1,<9.0.0)",
"pytz (>=2025.2,<2026.0)",
"pillow (>=11.3.0,<12.0.0)",
"supabase (>=2.17.0,<3.0.0)",
"pandas (>=2.3.1,<3.0.0)",
"redis (>=6.4.0,<7.0.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.packages]]
include = "app"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
pytest-cov = "^6.2.1"