-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
33 lines (28 loc) · 854 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
[tool.poetry]
name = "selenium-requests"
version = "2.0.4"
description = "Extends Selenium WebDriver classes to include the request function from the Requests library, while doing all the needed cookie and request headers handling."
license = "MIT"
authors = ["Chris Braun <cryzed@googlemail.com>"]
readme = "README.md"
repository = "https://github.com/cryzed/Selenium-Requests"
packages = [{ include = "seleniumrequests" }]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
requests = "^2.26.0"
tldextract = "^3.1.1"
selenium = "^4.3.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
black = "^22.1.0"
pylint = "^2.12.2"
types-requests = "^2.25.6"
types-selenium = "^3.141.9"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"