Clean up install warning

Previously, running `python setup.py install` would include a

   UserWarning: Unknown distribution option: bugtrack_url

Apparently, bugtrack_url isn't really a thing (anymore?), so include a
custom project URL instead.

Change-Id: I05dd64c63fe07e152b89a7f48ae7a4ab889e9b64
This commit is contained in:
Tim Burke 2021-10-25 21:45:31 -07:00
parent 218d5c5996
commit 61d1dd7d1e
1 changed files with 3 additions and 1 deletions

View File

@ -231,7 +231,9 @@ setup(name='pyeclib',
maintainer='Kevin Greenan and Tushar Gohad',
maintainer_email='kmgreen2@gmail.com, tusharsg@gmail.com',
url='https://opendev.org/openstack/pyeclib',
bugtrack_url='https://bugs.launchpad.net/pyeclib',
project_urls={
'Bug Tracker': 'https://bugs.launchpad.net/pyeclib',
},
description=('This library provides a simple Python interface for '
'implementing erasure codes. To obtain the best possible '
'performance, the underlying erasure code algorithms are '