Add docs and repo to project_urls metadata (#753)

* Add docs and repo to project_urls metadata

For programmatic access to metadata on PyPI.

* Add Trove classifier: Python 3 Only
This commit is contained in:
Hugo van Kemenade 2020-01-13 12:26:31 +02:00 committed by Tom Christie
parent 7f0e791f9d
commit 956129fbf7

View File

@ -40,6 +40,10 @@ setup(
python_requires=">=3.6",
version=get_version("httpx"),
url="https://github.com/encode/httpx",
project_urls={
"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(),
@ -74,5 +78,6 @@ setup(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
)