-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (37 loc) · 884 Bytes
/
pyproject.toml
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
41
42
43
44
45
46
47
[tool.poetry]
name = "scrapers"
version = "0.1.0"
description = ""
authors = ["purple_emily <[email protected]>"]
readme = "README.md"
packages = [{ include = "scrapers", from = "src" }]
[tool.poetry.dependencies]
aio-pika = "^9.4.0"
aiofiles = "^23.2.1"
aiolimiter = "^1.1.0"
arrow = "^1.3.0"
asyncpg = "^0.29.0"
httpx = "^0.26.0"
jsonpickle = "^3.0.3"
loguru = "^0.7.2"
lxml = "^5.1.0"
pydantic = "^2.6.1"
pydantic-settings = "^2.2.1"
python = "^3.12"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.351"
pytest = "^8.0.1"
ruff = "^0.2.2"
[tool.pyright]
strict = ["src/scrapers/*.py"]
typeCheckingMode = "standard"
reportMissingImports = true
reportUnusedVariable = true
reportUnusedFunction = true
reportUnusedImport = true
[tool.ruff]
fix = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"