-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (58 loc) · 1.61 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[tool.poetry]
name = "python-dataservice"
packages = [
{ include = "dataservice"},
]
version = "0.14.0"
description = "Lightweight async data gathering for Python"
authors = ["NomadMonad <romagnoli.luca@gmail.com>"]
readme = "README.rst"
documentation = "https://readthedocs.org/projects/dataservice/"
keywords = ["async", "data gathering", "scraping", "web scraping", "web crawling", "crawling", "data extraction",
"data scraping", "API", "data"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
bs4 = "^0.0.2"
html5lib = "^1.1"
httpx = "^0.27.0"
pydantic = "^2.8.2"
tenacity = "^9.0.0"
aiolimiter = "^1.1.0"
playwright = "^1.48.0"
jinja2 = "^3.1.4"
[tool.poetry.extras]
playwright = ["playwright"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.0"
pre-commit = "^3.8.0"
pytest = "^7.2.1"
pytest-asyncio = "^0.23.7"
pytest-cov = "^5.0.0"
pytest-datadir = "^1.5.0"
pytest-httpx = "^0.30.0"
pytest-mock = "^3.14.0"
ruff = "^0.5.6"
types-beautifulsoup4 = "^4.12.0.20240511"
check-wheel-contents = "^0.6.0"
pyclean = "^3.0.0"
nox = "^2024.4.15"
nox-poetry = "^1.0.3"
pytest-playwright = "^0.5.2"
poetry-plugin-export = "^1.8.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.0.2"
sphinx-autodoc-typehints = "^2.2.3"
autodoc-pydantic = "^2.2.0"
furo = "^2024.8.6"
[tool.poetry.group.examples.dependencies]
fastapi-pagination = "^0.12.26"
faker = "^26.3.0"
fastapi = {extras = ["all"], version = "^0.112.0"}
[tool.poetry.scripts]
dataservice = "dataservice.cli:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "F401", "I"]