-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
95 lines (81 loc) · 2.29 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[tool.poetry]
name = "pybas-automation"
version = "0.1.16"
description = "A Python library for automating BrowserAutomationStudio (BAS) using headless Chromium browsers and Windows GUI program."
authors = ["sergerdn <[email protected]>"]
homepage = "https://github.com/sergerdn/py-bas-automation"
repository = "https://github.com/sergerdn/py-bas-automation"
keywords = [
"headless Chromium", "Python browser automation", "browser fingerprint protection",
"prevent browser fingerprinting"
]
classifiers = [
"Topic :: Internet :: WWW/HTTP :: Browsers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
readme = ".pypi/README.md"
license = "MIT"
include = ["CHANGELOG.md"]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.1.16"
version_files = [
"pyproject.toml:version",
]
[tool.poetry.dependencies]
python = "^3.11"
httpx = { extras = ["socks"], version = "^0.25.1" }
pydantic = "^2.5.0"
python-dotenv = "^1.0.0"
websockets = "^12.0"
filelock = "^3.13.1"
fastapi = "^0.104.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-vcr = "^1.0.2"
pycountry = "^23.12.11"
black = "^23.11.0"
mypy = "^1.7.0"
isort = "^5.12.0"
flake8 = "^6.1.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
pydocstyle = "^6.3.0"
pylint = { extras = ["spelling"], version = "^3.0.2" }
pylint-pydantic = "^0.3.0"
autopep8 = "^2.0.4"
pydeps = "^1.12.17"
commitizen = "^3.12.0"
nest-asyncio = "^1.5.8"
[tool.poetry.group.dev-e2e-windows.dependencies]
psutil = "^5.9.6"
types-psutil = "^5.9.5.17"
pywinauto = "^0.6.8"
[tool.poetry.group.cmd.dependencies]
click = "^8.1.7"
playwright = {extras = ["chromium"], version = "^1.39.0"}
[tool.poetry.group.cmd-dev.dependencies]
pytest-playwright = "^0.4.2"
[tool.poetry.group.docs.dependencies]
humanmark = "^0.5.1"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
py_version = 311
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_untyped_calls = true
exclude = "tests/contrib"
[tool.pylint]
max-line-length = 120
#[tool.poetry.scripts]
#install = "python scripts/update_readme_links.py"
#[tool.pytest]
#addopts = "--cov=pybas_automation --cov-report html"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"