-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kdcproxy is now official stable and supports 3.5 and 3.6. Signed-off-by: Christian Heimes <[email protected]>
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ def read(fname): | |
|
||
setup( | ||
name="kdcproxy", | ||
version="0.3.2", | ||
version="0.3.3", | ||
author="Nalin Dahyabhai, Nathaniel McCallum, Christian Heimes", | ||
author_email="[email protected], [email protected], [email protected]", | ||
description=("A kerberos KDC HTTP proxy WSGI module."), | ||
|
@@ -69,13 +69,15 @@ def read(fname): | |
install_requires=install_requires, | ||
extras_require=extras_require, | ||
classifiers=[ | ||
"Development Status :: 3 - Alpha", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Intended Audience :: System Administrators", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6" | ||
"Topic :: Internet :: Proxy Servers", | ||
], | ||
) |