-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
75 lines (65 loc) · 1.69 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
70
71
72
73
74
75
[tool.poetry]
name = "pyscalpel"
version = "0.2.0"
description = "Your easy-to-use, fast and powerful web scraping library"
authors = ["lewoudar <lewoudar@gmail.com>"]
readme = "README.md"
keywords = ["trio", "gevent", "webscraping", "crawler", "asyncio"]
homepage = "https://scalpel.readthedocs.io/en/stable"
repository = "https://github.com/lewoudar/scalpel"
documentation = "https://scalpel.readthedocs.io/en/stable"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Utilities",
"Operating System :: OS Independent",
"Framework :: Trio",
"Framework :: AsyncIO",
"Framework :: Robot Framework :: Tool",
]
packages = [
{ include = "scalpel" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/lewoudar/scalpel/issues"
[tool.poetry.dependencies]
python = "^3.7"
parsel = "^1.5.2"
attrs = "^19.3.0"
fake-useragent = "^0.1.11"
selenium = "^3.141.0"
configuror = "^0.2.0"
rfc3986 = { extras = ["idna"], version = "^1.4.0" }
msgpack = "^1.0.0"
gevent = { version = "^21.12.0", optional = true }
trio = { version = "^0.17.0", optional = true }
httpx = "^0.23.0"
anyio = "^3.0.0"
[tool.poetry.extras]
gevent = ["gevent"]
trio = ["trio"]
full = ["gevent", "trio"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
nox = "^2022.1.0"
flake8 = "^3.7.9"
bandit = "^1.6.2"
pytest-mock = "^2.0.0"
coverage = "^5.1"
mock = "^4.0.3"
mkdocs-material = "^7.0.5"
mkdocs = "^1.1.2"
mkautodoc = "^0.1.0"
respx = "^0.19.0"
pre-commit = "^2.19.0"
isort = "^5.10.1"
black = "^22.3.0"
safety = "^1.10.3"
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"