9df5e1bd8f
Testing / remote-protocol-compat (0.9.5) (push) Successful in 40s
Testing / remote-protocol-compat (0.9.3) (push) Successful in 42s
Package Extension / package-extension (push) Successful in 32s
Build & Publish Package / publish (push) Successful in 25s
Testing / test (push) Successful in 31s
- Rename the PyPI distribution from browser-cli to real-browser-cli after PyPI rejected the original name as too similar to an existing project. - Keep the installed console command as browser-cli so user-facing CLI usage remains unchanged. - Add README-based package metadata, author information, and project URLs so PyPI renders a proper project description. - Centralize the PyPI distribution name for importlib.metadata version lookups used by the CLI, doctor command, and remote user agent. - Document uv tool install, optional fast extra installation, and upgrade commands. - Bump package and extension metadata to 0.14.3 for the republished release.
45 lines
1.0 KiB
TOML
45 lines
1.0 KiB
TOML
[project]
|
|
name = "real-browser-cli"
|
|
version = "0.14.3"
|
|
description = "Control your real running browser from the terminal or Python SDK"
|
|
readme = "README.md"
|
|
license = { file = "LICENSE" }
|
|
authors = [{ name = "Daniel Dolezal" }]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"click>=8",
|
|
"cryptography>=48",
|
|
"rich>=13",
|
|
"msgpack>=1",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.yiprawr.dev/Automatisation/browser-cli"
|
|
Repository = "https://git.yiprawr.dev/Automatisation/browser-cli"
|
|
Issues = "https://git.yiprawr.dev/Automatisation/browser-cli/issues"
|
|
|
|
[project.optional-dependencies]
|
|
# Better/faster remote response compression than the stdlib zlib/gzip fallback.
|
|
fast = ["zstandard>=0.22"]
|
|
|
|
[project.scripts]
|
|
browser-cli = "browser_cli.cli:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8",
|
|
"pytest-cov>=7.1.0",
|
|
"zstandard>=0.22",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["browser_cli"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
log_level = "INFO"
|