mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
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>
This commit is contained in:
committed by
Petr Vobornik
parent
232a0391d3
commit
2dd66c6366
@@ -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",
|
||||
],
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user