Drop __title__ and __version__

This commit is contained in:
Tom Christie 2025-09-18 13:24:02 +01:00
parent 4acf5c2c37
commit 5e054470f1
5 changed files with 2 additions and 15 deletions

View File

@ -5,7 +5,8 @@ build-backend = "hatchling.build"
[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" },
]
@ -24,7 +25,3 @@ classifiers = [
dependencies = [
"certifi",
]
dynamic = ["version"]
[tool.hatch.version]
path = "src/httpx/__version__.py"

View File

@ -1,4 +1,3 @@
from .__version__ import __title__, __version__
from ._client import * # Client
from ._content import * # Content, File, Files, Form, HTML, JSON, MultiPart, Text
from ._headers import * # Headers
@ -15,8 +14,6 @@ from ._urls import * # QueryParams, URL
__all__ = [
"__title__",
"__version__",
"ByteStream",
"Client",
"Connection",

View File

@ -1,2 +0,0 @@
__title__ = "ahttpx"
__version__ = "1.0.dev3"

View File

@ -1,4 +1,3 @@
from .__version__ import __title__, __version__
from ._client import * # Client
from ._content import * # Content, File, Files, Form, HTML, JSON, MultiPart, Text
from ._headers import * # Headers
@ -15,8 +14,6 @@ from ._urls import * # QueryParams, URL
__all__ = [
"__title__",
"__version__",
"ByteStream",
"Client",
"Connection",

View File

@ -1,2 +0,0 @@
__title__ = "httpx"
__version__ = "1.0.dev3"