From a467027adcd7cc58ea3ac7bd0954bed968fe7281 Mon Sep 17 00:00:00 2001 From: Darko Lukic Date: Mon, 26 Mar 2018 23:03:02 +0200 Subject: [PATCH] Add project_urls parameter in setup.py --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 607404b..83c4a38 100644 --- a/setup.py +++ b/setup.py @@ -11,13 +11,18 @@ class PostInstall(install): setup(name='cosmicpi', version='1.5.2', - description='Open source cosmic ray detector', - long_description='The Cosmic Pi project aims to build the world\'s largest open source distributed cosmic ray telescope. You too can be a part of the project, by becoming a Cosmic Pixel!', + description='UI for the CosmicPi cosmic ray detector', + long_description='This software provides the user interface, temporary storage and connection to the internet storage for the detectors of the CosmicPi project. The Cosmic Pi project aims to build the world\'s largest open source distributed cosmic ray telescope. You too can be a part of the project, by becoming a Cosmic Pixel!', platforms=['noarch'], maintainer='Cosmic Pi Team', maintainer_email='info@cosmicpi.org', url='http://cosmicpi.org/', license='GPL V2', + project_urls={ + "Bug Tracker": "https://github.com/CosmicPi/cosmicpi-rpi_V1.5/issues", + "Documentation": "https://github.com/CosmicPi/cosmicpi-rpi_V1.5/blob/master/README.md", + "Source Code": "https://github.com/CosmicPi/cosmicpi-rpi_V1.5", + }, packages=[ 'cosmicpi', 'cosmicpi.rest',