Files
crawle-snapp/pyproject.toml
T
2026-06-15 19:47:56 +03:30

30 lines
577 B
TOML

[project]
name = "seed"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"undetected-chromedriver>=3.5.5",
"selenium>=4.18.0",
"selenium-stealth>=1.0.6",
"fastapi>=0.111.0",
"uvicorn[standard]>=0.30.0",
"aiosqlite>=0.20.0",
"httpx>=0.27.0",
"python-multipart>=0.0.9",
"pydantic>=2.7.0",
"python-dotenv>=1.0.1",
]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "strict"
reportMissingImports = true
reportMissingTypeStubs = false
venvPath = "."
venv = ".venv"
[dependency-groups]
dev = [
"pyright>=1.1.370",
]