From 2dd66c6366454f9edd9b89861530e97c75b2d869 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Mon, 31 Oct 2016 09:19:15 +0100 Subject: [PATCH] Use correct classifiers to make setup.py files PyPI compatible Signed-off-by: Christian Heimes Reviewed-By: Martin Basti --- ipasetup.py.in | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/ipasetup.py.in b/ipasetup.py.in index 2835527b3..5eff1aee0 100644 --- a/ipasetup.py.in +++ b/ipasetup.py.in @@ -1,5 +1,4 @@ -#!/usr/bin/python2 -# Copyright (C) 2014 Red Hat +# Copyright (C) 2016 Red Hat # see file 'COPYING' for use and warranty information # # This program is free software; you can redistribute it and/or modify @@ -18,9 +17,10 @@ import os import sys + common_args = dict( version="@VERSION@", - license="GPL", + license="GPLv3", author="FreeIPA Developers", author_email="freeipa-devel@redhat.com", maintainer="FreeIPA Developers", @@ -30,14 +30,22 @@ common_args = dict( platforms=["Linux", "Solaris", "Unix"], classifiers=[ "Development Status :: 5 - Production/Stable", + "Intended Audience :: System Administrators", + ("License :: OSI Approved :: " + "GNU General Public License v3 (GPLv3)"), + "Programming Language :: C", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: Implementation :: CPython", + "Operating System :: POSIX", + "Operating System :: POSIX :: Linux", + "Operating System :: Unix", + "Topic :: Internet :: Name Service (DNS)", + "Topic :: Security", ("Topic :: System :: Systems Administration :: " "Authentication/Directory :: LDAP"), - "Topic :: Internet :: Name Service (DNS)", - "Intended Audience :: System Environment/Base", - "License :: GPL", - "Programming Language :: Python", - "Operating System :: POSIX", - "Operating System :: Unix", ], )