-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 919 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
[project]
name = "back"
version = "0.1.0"
description = ""
authors = [
{name = "naya-h2",email = "hw7666@naver.com"}
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"selenium (>=4.31.0,<5.0.0)",
"fake-useragent (>=2.1.0,<3.0.0)",
"webdriver-manager (>=4.0.2,<5.0.0)",
"pyshorteners (>=1.0.1,<2.0.0)",
"pydantic (>=2.11.2,<3.0.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"fastapi (>=0.115.12,<0.116.0)",
"firebase-admin (>=6.8.0,<7.0.0)",
"openpyxl (>=3.1.5,<4.0.0)"
]
[tool.poetry]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11"
pydantic = "^2.11.5"
uvicorn = "^0.34.2"
fastapi = "^0.115.12"
requests = "^2.32.3"
selenium = "^4.33.0"
webdriver-manager = "^4.0.2"
fake-useragent = "^2.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"