-
-
Notifications
You must be signed in to change notification settings - Fork 977
Apply PEP-621 #2145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Apply PEP-621 #2145
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
02fb7e2
Fix cli docs --proxies #2124 (#2125)
guyskk 0792352
Remove setup.py
Kludex 76d7388
Add build command
Kludex b5e5503
Merge remote-tracking branch 'origin/master' into chore/apply-pep-621
Kludex 441ad6b
Add build package
Kludex 42c88c9
Apply >=3.7 Python on pyproject.toml
Kludex 53cf0b2
Update pyproject.toml
Kludex e7995cf
Update scripts/build
Kludex d01587a
Update requirements.txt
Kludex 345ed72
Add setup.py for editable installs
Kludex 5bd0468
rebase
Kludex 03e75ec
Update according to new setup.py
Kludex e3e08b9
Merge branch 'master' into chore/apply-pep-621
Kludex 7970715
Merge branch 'master' into chore/apply-pep-621
Kludex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,61 @@ | ||
| [build-system] | ||
| requires = ["setuptools", "setuptools-scm"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "httpx" | ||
| description = "The next generation HTTP client." | ||
| authors = [{ name = "Tom Christie", email = "[email protected]" }] | ||
| license = { text = "BSD 3-Clause License" } | ||
| requires-python = ">=3.7" | ||
| dependencies = [ | ||
| "certifi", | ||
| "sniffio", | ||
| "rfc3986[idna2008]>=1.3,<2", | ||
| "httpcore>=0.15.0,<0.16.0", | ||
| ] | ||
| classifiers = [ | ||
| "Development Status :: 4 - Beta", | ||
| "Environment :: Web Environment", | ||
| "Intended Audience :: Developers", | ||
| "License :: OSI Approved :: BSD License", | ||
| "Operating System :: OS Independent", | ||
| "Topic :: Internet :: WWW/HTTP", | ||
| "Framework :: AsyncIO", | ||
| "Framework :: Trio", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.7", | ||
| "Programming Language :: Python :: 3.8", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3 :: Only", | ||
| ] | ||
| dynamic = ["version", "readme"] | ||
|
|
||
| [tool.setuptools] | ||
| license-files = ["LICENSE.md"] | ||
| package-data = { "httpx" = ["py.typed"] } | ||
| include-package-data = true | ||
| zip-safe = false | ||
|
|
||
| [project.optional-dependencies] | ||
| http2 = ["h2>=3,<5"] | ||
| socks = ["socksio==1.*"] | ||
| brotli = [ | ||
| "brotli; platform_python_implementation == 'CPython'", | ||
| "brotlicffi; platform_python_implementation != 'CPython'", | ||
| ] | ||
| cli = ["click==8.*", "rich>=10,<13", "pygments==2.*"] | ||
|
|
||
| [project.urls] | ||
| Homepage = "https://www.python-httpx.org" | ||
| Changelog = "https://github.com/encode/httpx/blob/master/CHANGELOG.md" | ||
| Documentation = "https://www.python-httpx.org" | ||
| Source = "https://github.com/encode/httpx" | ||
|
|
||
| [project.scripts] | ||
| httpx = "httpx:main" | ||
|
|
||
| [tool.setuptools.dynamic] | ||
| version = { attr = "httpx.__version__.__version__" } | ||
| readme = { file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown" } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,96 +1,5 @@ | ||
| #!/usr/bin/env python | ||
Kludex marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # -*- coding: utf-8 -*- | ||
|
|
||
| import re | ||
| from pathlib import Path | ||
|
|
||
| # This file is needed for editable installs. | ||
| # Ref.: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html | ||
| from setuptools import setup | ||
|
|
||
|
|
||
| def get_version(package): | ||
| """ | ||
| Return package version as listed in `__version__` in `init.py`. | ||
| """ | ||
| version = Path(package, "__version__.py").read_text() | ||
| return re.search("__version__ = ['\"]([^'\"]+)['\"]", version).group(1) | ||
|
|
||
|
|
||
| def get_long_description(): | ||
| """ | ||
| Return the README. | ||
| """ | ||
| long_description = "" | ||
| with open("README.md", encoding="utf8") as f: | ||
| long_description += f.read() | ||
| long_description += "\n\n" | ||
| with open("CHANGELOG.md", encoding="utf8") as f: | ||
| long_description += f.read() | ||
| return long_description | ||
|
|
||
|
|
||
| def get_packages(package): | ||
| """ | ||
| Return root package and all sub-packages. | ||
| """ | ||
| return [str(path.parent) for path in Path(package).glob("**/__init__.py")] | ||
|
|
||
|
|
||
| setup( | ||
| name="httpx", | ||
| python_requires=">=3.7", | ||
| version=get_version("httpx"), | ||
| url="https://github.com/encode/httpx", | ||
| project_urls={ | ||
| "Changelog": "https://github.com/encode/httpx/blob/master/CHANGELOG.md", | ||
| "Documentation": "https://www.python-httpx.org", | ||
| "Source": "https://github.com/encode/httpx", | ||
| }, | ||
| license="BSD", | ||
| description="The next generation HTTP client.", | ||
| long_description=get_long_description(), | ||
| long_description_content_type="text/markdown", | ||
| author="Tom Christie", | ||
| author_email="[email protected]", | ||
| package_data={"httpx": ["py.typed"]}, | ||
| packages=get_packages("httpx"), | ||
| include_package_data=True, | ||
| zip_safe=False, | ||
| install_requires=[ | ||
| "certifi", | ||
| "sniffio", | ||
| "rfc3986[idna2008]>=1.3,<2", | ||
| "httpcore>=0.15.0,<0.16.0", | ||
| ], | ||
| extras_require={ | ||
| "http2": "h2>=3,<5", | ||
| "socks": "socksio==1.*", | ||
| "brotli": [ | ||
| "brotli; platform_python_implementation == 'CPython'", | ||
| "brotlicffi; platform_python_implementation != 'CPython'" | ||
| ], | ||
| "cli": [ | ||
| "click==8.*", | ||
| "rich>=10,<13", | ||
| "pygments==2.*" | ||
| ] | ||
| }, | ||
| entry_points = { | ||
| "console_scripts": "httpx=httpx:main" | ||
| }, | ||
| classifiers=[ | ||
| "Development Status :: 4 - Beta", | ||
| "Environment :: Web Environment", | ||
| "Intended Audience :: Developers", | ||
| "License :: OSI Approved :: BSD License", | ||
| "Operating System :: OS Independent", | ||
| "Topic :: Internet :: WWW/HTTP", | ||
| "Framework :: AsyncIO", | ||
| "Framework :: Trio", | ||
| "Programming Language :: Python :: 3", | ||
| "Programming Language :: Python :: 3.7", | ||
| "Programming Language :: Python :: 3.8", | ||
| "Programming Language :: Python :: 3.9", | ||
| "Programming Language :: Python :: 3.10", | ||
| "Programming Language :: Python :: 3 :: Only", | ||
| ], | ||
| ) | ||
| setup() | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should add a minimal version of setuptools as a build requirement to ensure that a compatible version of setuptools is installed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed