eggfetch-python 0.1.4

Python sync and asyncio bindings for the eggfetch HTTP engine (Rust core via PyO3; Python users install from PyPI)
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "eggfetch"
version = "0.1.4"
description = "Python bindings for eggfetch"
readme = "../../README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
    {name = "eggfetch contributors"},
]
keywords = ["http", "client", "httpx", "async", "rust"]
classifiers = [
    "Development Status :: 3 - Alpha",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Rust",
    "License :: OSI Approved :: MIT License",
]

[project.urls]
Homepage = "https://github.com/eggstack/eggfetch"
Repository = "https://github.com/eggstack/eggfetch"

[project.optional-dependencies]
test = [
    "pytest>=8.4",
    "pytest-asyncio>=1.0",
]

[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "eggfetch._native"

[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"