forked from browser-use/browser-use
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 973 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "browser-use-undetected"
description = "Undetected browser automation addon for browser-use with proxy support"
authors = [
{ name = "Jayden Clarke" }
]
version = "0.2.5.11"
readme = "README.md"
requires-python = ">=3.11,<4.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"browser-use>=0.2.5",
"camoufox[geoip]>=0.4.11",
"psutil>=7.0.0",
"pydantic>=2.10.6",
"playwright-recaptcha>=0.5.0",
"capsolver>=1.0.0",
]
[project.urls]
Repository = "https://github.com/BARKEM-JC/browser-use-undetected"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = [
"browser_use_undetected/**/*.py",
]
[tool.ruff]
line-length = 130
fix = true
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"