2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-11 05:43:14 +00:00

PyKMIP - Release v0.1.0

This change includes several new features to PyKMIP, including:

* support for Python 3.3 and 3.4
* support for KMIP client/server SSL connections
* removal of all Thrift library dependencies
This commit is contained in:
Peter Hamilton
2014-08-28 14:04:23 -04:00
parent f0e3c26170
commit 97ae864196
27 changed files with 799 additions and 627 deletions

View File

@@ -17,7 +17,7 @@ import setuptools
setuptools.setup(
name='PyKMIP',
version='0.0.1',
version='0.1.0',
description='KMIP v1.1 library',
keywords='KMIP',
author='Peter Hamilton',
@@ -39,5 +39,7 @@ setuptools.setup(
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)