From 61d1dd7d1e8e2c231a23258d9c5fcfcde7b88f29 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Mon, 25 Oct 2021 21:45:31 -0700 Subject: 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 --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 163d335..ff5b9fd 100644 --- a/setup.py +++ b/setup.py @@ -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 ' -- cgit v1.2.1