summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-04-22 16:02:37 +0200
committerDaniel P. Berrange <berrange@redhat.com>2015-04-22 16:45:14 +0100
commit0584ac3f295543778e3b453ed8d1613b505969b7 (patch)
tree17fe60aab4e4e3bf3d222c1e92bcce64040de149
parentb98b3f6bf3f26721a88a212395004dd126205b84 (diff)
downloadlibvirt-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-xsetup.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 79b048f..a8e9e86 100755
--- a/setup.py
+++ b/setup.py
@@ -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",
+ ]
+)