From 4756b3c611ef710c99b51d2fe5f04d72b28e75d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 5 May 2020 17:41:18 +0300 Subject: Add What's New project URL Background info at https://github.com/pypa/warehouse/pull/7882 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 92d059ffc..7ceb14800 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ ext_modules = __pkginfo__.get("ext_modules", None) install_requires = __pkginfo__.get("install_requires", None) dependency_links = __pkginfo__.get("dependency_links", []) extras_require = __pkginfo__.get("extras_require", {}) +project_urls = __pkginfo__.get("project_urls", {}) readme_path = join(base_dir, "README.rst") if exists(readme_path): @@ -153,6 +154,7 @@ def install(**kwargs): python_requires=">=3.5.*", setup_requires=pytest_runner, tests_require=["pytest"], + project_urls=project_urls, **kwargs ) -- cgit v1.2.1