Skip to content

Commit

Permalink
Add What's New project URL
Browse files Browse the repository at this point in the history
Background info at pypi/warehouse#7882
  • Loading branch information
scop authored and PCManticore committed May 6, 2020
1 parent 43449de commit 4756b3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
description = "python code static checker"
web = "https://github.com/PyCQA/pylint"
mailinglist = "mailto:code-quality@python.org"
project_urls = {"What's New": "https://pylint.pycqa.org/en/latest/whatsnew/"}
author = "Python Code Quality Authority"
author_email = "code-quality@python.org"

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
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):
Expand Down Expand Up @@ -153,6 +154,7 @@ def install(**kwargs):
python_requires=">=3.5.*",
setup_requires=pytest_runner,
tests_require=["pytest"],
project_urls=project_urls,
**kwargs
)

Expand Down

0 comments on commit 4756b3c

Please sign in to comment.