Drop __title__ and __version__
This commit is contained in:
parent
4acf5c2c37
commit
5e054470f1
@ -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"
|
||||
|
||||
@ -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",
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
__title__ = "ahttpx"
|
||||
__version__ = "1.0.dev3"
|
||||
@ -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",
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
__title__ = "httpx"
|
||||
__version__ = "1.0.dev3"
|
||||
Loading…
Reference in New Issue
Block a user