summaryrefslogtreecommitdiffstats
path: root/ipasetup.py.in
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-10-31 09:19:15 +0100
committerPetr Vobornik <pvoborni@redhat.com>2016-11-15 12:07:57 +0100
commit2dd66c6366454f9edd9b89861530e97c75b2d869 (patch)
treeb897835b7cc5a5b557d78b1800c057e8f3ea497e /ipasetup.py.in
parent232a0391d33429a71da865c55be582ebdbc5b3db (diff)
downloadfreeipa-2dd66c6366454f9edd9b89861530e97c75b2d869.tar.gz
freeipa-2dd66c6366454f9edd9b89861530e97c75b2d869.tar.xz
freeipa-2dd66c6366454f9edd9b89861530e97c75b2d869.zip
Use correct classifiers to make setup.py files PyPI compatible
Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipasetup.py.in')
-rw-r--r--ipasetup.py.in26
1 files 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",
- ("Topic :: System :: Systems Administration :: "
- "Authentication/Directory :: LDAP"),
- "Topic :: Internet :: Name Service (DNS)",
- "Intended Audience :: System Environment/Base",
- "License :: GPL",
- "Programming Language :: Python",
+ "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"),
],
)