eggress-python 1.0.2

Python bindings for the eggress proxy embed API
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "eggress"
version = "1.0.1"
requires-python = ">=3.9"
description = "Python bindings for the eggress proxy — pproxy-compatible URI translation, configuration, and service management"
readme = "../../python/README.md"
license = {text = "MIT OR Apache-2.0"}
authors = [{name = "eggstack"}]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Intended Audience :: Developers",
    "Intended Audience :: System Administrators",
    "License :: OSI Approved :: MIT License",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3 :: Only",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Topic :: Internet :: Proxy Servers",
    "Typing :: Typed",
]

[project.urls]
Homepage = "https://github.com/eggstack/eggress"
Repository = "https://github.com/eggstack/eggress"
Documentation = "https://github.com/eggstack/eggress#readme"
"Bug Tracker" = "https://github.com/eggstack/eggress/issues"

[project.scripts]
pproxy = "pproxy.__main__:main"

[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-asyncio>=0.23,<1"]
cipher-api = ["cryptography>=42,<47"]

[tool.maturin]
features = ["pyo3/extension-module", "pyo3/abi3-py39"]
python-source = "../../python"
module-name = "eggress._eggress"
include = ["eggress/**/*.py", "pproxy/**/*.py", "eggress/py.typed"]