Skip to content

Commit

Permalink
Add project urls to setup.py (#354)
Browse files Browse the repository at this point in the history
- bug tracker
- source code

These will be shown at the project`s PyPi page
(https://pypi.org/project/pdbpp/) and make it easier to find relevant
information.
  • Loading branch information
jugmac00 authored Feb 1, 2020
1 parent f798318 commit 682710c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ def run(self):
author_email='anto.cuni@gmail.com',
py_modules=['pdbpp', '_pdbpp_path_hack.pdb'],
package_dir={"": "src"},
url='http://github.com/antocuni/pdb',
url='https://github.com/pdbpp/pdbpp',
project_urls={
'Bug Tracker': 'https://github.com/pdbpp/pdbpp/issues',
'Source Code': 'https://github.com/pdbpp/pdbpp',
},
license='BSD',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
description='pdb++, a drop-in replacement for pdb',
Expand Down

0 comments on commit 682710c

Please sign in to comment.