[project]
name = "httpx"
description = "HTTP, for Python."
-requires-python = ">=3.10"
+version = "1.0.dev3"
+requires-python = ">=3.11"
authors = [
{ name = "Tom Christie", email = "tom@tomchristie.com" },
]
dependencies = [
"certifi",
]
-dynamic = ["version"]
-
-[tool.hatch.version]
-path = "src/httpx/__version__.py"
-from .__version__ import __title__, __version__
from ._client import * # Client
from ._content import * # Content, File, Files, Form, HTML, JSON, MultiPart, Text
from ._headers import * # Headers
__all__ = [
- "__title__",
- "__version__",
"ByteStream",
"Client",
"Connection",
+++ /dev/null
-__title__ = "ahttpx"
-__version__ = "1.0.dev3"
\ No newline at end of file
-from .__version__ import __title__, __version__
from ._client import * # Client
from ._content import * # Content, File, Files, Form, HTML, JSON, MultiPart, Text
from ._headers import * # Headers
__all__ = [
- "__title__",
- "__version__",
"ByteStream",
"Client",
"Connection",
+++ /dev/null
-__title__ = "httpx"
-__version__ = "1.0.dev3"
\ No newline at end of file