-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 874 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (26 loc) · 874 Bytes
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
[tool.poetry]
name = "weberist"
version = "0.3.1"
description = "Adapter for Selenium"
authors = ["bessavagner <bessavagner@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "weberist", from = "src"}]
include = [
{path = "src/weberist/docker/Dockerfile", format = ["sdist", "wheel"]},
{path = "src/weberist/docker/docker-compose-selenoid.yml", format = ["sdist", "wheel"]},
{path = "src/weberist/docker/chrome-entrypoint.sh", format = ["sdist", "wheel"]},
{path = "src/weberist/docker/firefox-entrypoint.sh", format = ["sdist", "wheel"]},
]
[tool.poetry.dependencies]
python = "^3.12"
selenium = "^4.23.1"
webdriver-manager = "^4.0.2"
docker = "^7.1.0"
beautifulsoup4 = "^4.12.3"
lxml = "^5.3.0"
selenium-stealth = "^1.0.6"
nest-asyncio = "^1.6.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"