forked from FauvidoTechnologies/pyba
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (59 loc) · 1.44 KB
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
[tool.poetry]
name = "py-browser-automation"
version = "0.3.4"
description = "Automate online browsing using python and AI"
authors = ["pUrGe12 <achintya.jai@owasp.org>"]
keywords = [
"browser-automations",
"AI",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
license = "MIT"
readme = "README.md"
packages = [{include = "pyba"}]
documentation = "https://pyba.readthedocs.io/"
[tool.poetry.scripts]
pyba = "pyba.cli.cli_entry:main"
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
pydantic = "^2.12.0"
google-genai = "^1.45.0"
openai = "^2.6.0"
bs4 = "^0.0.2"
playwright = "^1.55.0"
pyyaml = "^6.0.3"
python-dotenv = "^1.1.1"
playwright-stealth = "^2.0.0"
colorama = "^0.4.6"
sqlalchemy = "^2.0.44"
requests = "^2.32.5"
oxymouse = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = "<8.0.0"
sphinx-rtd-theme = "^3.0.2"
[tool.isort]
profile = "black"
line_length = 99
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = ["pyba"]
no_inline_sort = true
skip = ["__init__.py"]
[tool.ruff]
line-length = 99
[tool.ruff.lint]
per-file-ignores = {"__init__.py" = ["ALL"]}
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"