diff --git a/docs/sphinx/source/whatsnew/v0.8.1.rst b/docs/sphinx/source/whatsnew/v0.8.1.rst index 0c1b588276..df2835226f 100644 --- a/docs/sphinx/source/whatsnew/v0.8.1.rst +++ b/docs/sphinx/source/whatsnew/v0.8.1.rst @@ -49,6 +49,7 @@ Documentation (:issue:`1055`, :pull:`1075`) * Add gallery example about backtracking on sloped terrain. (:pull:`1077`) * Add toggle button for code prompts to make copying code easier (:pull:`1096`) +* Add project urls to setup.py for pypi page (:pull:`1119`) Requirements ~~~~~~~~~~~~ @@ -62,3 +63,5 @@ Contributors * Cliff Hansen (:ghuser:`cwhanse`) * Will Vining (:ghuser:`wfvining`) * Michael Jurasovic (:ghuser:`jurasofish`) +* Aziz Ben Othman (:ghuser:`AzizCode92`) + diff --git a/setup.py b/setup.py index b89a3c9983..e2bacea7a8 100755 --- a/setup.py +++ b/setup.py @@ -73,6 +73,12 @@ 'python_requires': '>=3.6' } +PROJECT_URLS = { + "Bug Tracker": "https://github.com/pvlib/pvlib-python/issues", + "Documentation": "https://pvlib-python.readthedocs.io/", + "Source Code": "https://github.com/pvlib/pvlib-python", +} + # set up pvlib packages to be installed and extensions to be compiled PACKAGES = ['pvlib'] @@ -109,5 +115,6 @@ maintainer_email=MAINTAINER_EMAIL, license=LICENSE, url=URL, + project_urls=PROJECT_URLS, classifiers=CLASSIFIERS, **setuptools_kwargs)