-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 817 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 817 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
[tool.poetry]
name = "spider"
version = "0.1.0"
description = ""
authors = ["roshanlam <lamichhaner40@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "spider", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.11, <3.13"
aiohttp = "^3.11.13"
async-timeout = "^5.0.1"
celery = "^5.4.0"
sqlalchemy = "^2.0.38"
psycopg2-binary = "^2.9.10"
pyyaml = "^6.0.2"
beautifulsoup4 = "^4.13.3"
lxml = "^5.3.1"
redis = "^5.2.1"
spacy = "^3.8.4"
aioresponses = "^0.7.8"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.3"
pytest-mock = "^3.14.0"
pytest-cov = "^7.0.0"
fastapi = "^0.115.9"
uvicorn = {extras = ["standard"], version = "^0.34.0"}
playwright = "^1.50.0"
[tool.pytest.ini_options]
minversion = "7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"