-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 1.15 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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "browser-oxide"
version = "0.1.3"
description = "BrowserOxide — stealth headless browser engine in Rust (Python bindings) — real HTML/CSS/DOM/JS, own BoringSSL TLS, native fingerprint, no Chromium"
readme = "python/README.md"
requires-python = ">=3.8"
license = { text = "MIT OR Apache-2.0" }
authors = [{ name = "Yury Fedoseev" }]
keywords = [
"stealth-browser",
"headless-browser",
"anti-detect-browser",
"web-scraping",
"anti-bot",
"camoufox-alternative",
"tls-fingerprint",
"ja4",
"browser-fingerprint",
"undetected-browser",
"bypass-cloudflare",
"datadome",
"mcp",
"ai-agents",
"rust",
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Topic :: Internet :: WWW/HTTP :: Browsers",
]
[project.urls]
Repository = "https://github.com/yfedoseev/browser_oxide"
[tool.maturin]
manifest-path = "crates/browser_oxide_py/Cargo.toml"
module-name = "browser_oxide._native"
python-source = "python"