-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
34 lines (30 loc) · 656 Bytes
/
Pipfile
File metadata and controls
34 lines (30 loc) · 656 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
aiohttp = ">=3.9.0"
click = ">=8.1.0"
rich = ">=13.0.0"
psutil = ">=5.9.0"
uvloop = ">=0.19.0"
python-magic = ">=0.4.27"
pymysql = ">=1.1.0"
dbutils = ">=3.0.3"
redis = ">=5.0.0"
fastapi = ">=0.104.0"
uvicorn = ">=0.24.0"
python-multipart = ">=0.0.6"
pydantic = {extras = ["email"], version = "*"}
[dev-packages]
pytest = ">=7.0.0"
pytest-asyncio = ">=0.21.0"
black = ">=23.0.0"
isort = ">=5.12.0"
mypy = ">=1.0.0"
[requires]
python_version = "3.10"
[scripts]
start = "python -m dht_crawler.main"
dev = "python -m dht_crawler.main --debug"
test = "pytest tests/ -v"