-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.19 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "saferequests"
version = "0.1.0"
description = "A drop-in replacement for requests with automatic proxy rotation for web scraping and anonymity"
authors = ["Federico Minutoli <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["requests", "proxy-rotation", "web-scraping", "anonymity"]
[tool.poetry.dependencies]
python = "~3.10"
aiohttp = "~3.9"
aiostream = "~0.5"
beautifulsoup4 = "~4.12"
html5lib = "~1.1"
requests = "~2.31"
uvloop = { version = "~0.19", markers = "sys_platform != 'win32'" }
[tool.poetry.dev-dependencies]
pytest = "^7.4"
pytest-asyncio = "^0.23"
pytest-cov = "^4.1"
codecov = "^2.1"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.2"
sphinx-autodoc-typehints = "^1.25"
[tool.black]
include = ".pyi?$"
exclude = """
/(
.git
| .hg
| .mypy_cache
| .tox
| .venv
| _build
| buck-out
| build
| dist
)/
"""
line-length = 88
target-version = ["py310"]
[tool.isort]
include_trailing_comma = true
lines_after_imports = 2
multi_line_output = 3
profile = "black"
py_version = 310