33 lines
641 B
TOML
33 lines
641 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",
|
|
"setuptools>=70.0.0",
|
|
"rq>=1.16.0",
|
|
"redis>=5.0.0",
|
|
]
|
|
|
|
[tool.pyright]
|
|
pythonVersion = "3.11"
|
|
typeCheckingMode = "strict"
|
|
reportMissingImports = true
|
|
reportMissingTypeStubs = false
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pyright>=1.1.370",
|
|
]
|