forked from HENNGE/arsenic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (46 loc) · 1.39 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
[tool.poetry]
name = "arsenic"
version = "21.8"
description = "Asynchronous WebDriver client"
authors = ["Jonas Obrist <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://github.com/HDE/arsenic"
repository = "https://github.com/HDE/arsenic"
documentation = "https://arsenic.readthedocs.io/en/latest/"
keywords = ["asyncio"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Framework :: AsyncIO",
"Topic :: Software Development :: Testing",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.8"
attrs = ">=17.4.0"
structlog = "^24"
aiohttp = ">=3"
packaging = ">=23"
[tool.poetry.dev-dependencies]
jinja2 = "^3.1.2"
pytest = "^8"
pytest-asyncio = "^0.14.0"
sphinx = "^5.2.3"
pytest-cov = "^2.10.1"
asyncio-extras = "^1.3.2"
pre-commit = "^2.7.1"
black = "^22.10.0"
Pillow = "^9"
[tool.poetry.scripts]
arsenic-check-ie11 = "arsenic.helpers:check_ie11_environment_cli"
arsenic-configure-ie11 = "arsenic.helpers:configure_ie11_environment_cli"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"