diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-22 16:02:37 +0200 |
|---|---|---|
| committer | Daniel P. Berrange <berrange@redhat.com> | 2015-04-22 16:45:14 +0100 |
| commit | 0584ac3f295543778e3b453ed8d1613b505969b7 (patch) | |
| tree | 17fe60aab4e4e3bf3d222c1e92bcce64040de149 | |
| parent | b98b3f6bf3f26721a88a212395004dd126205b84 (diff) | |
| download | libvirt-python-1.2.15.tar.gz | |
libvirt-python: add classifiers to setup.pyv1.2.15
Add the Python 3 classifier, needed by the caniusepython3 tool to check
if dependencies of a projects are Python 3 compatible:
https://caniusepython3.com/
| -rwxr-xr-x | setup.py | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -325,4 +325,13 @@ setup(name = 'libvirt-python', 'sdist': my_sdist, 'rpm': my_rpm, 'test': my_test - }) + }, + classifiers = [ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)", + "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + ] +) |
