PyKMIP - Release v0.1.1

This update includes the following bug fix:

* support for auto-installing third-party library dependencies
This commit is contained in:
Peter Hamilton 2014-09-12 11:04:44 -04:00
parent 97ae864196
commit 27b1e2ab08
1 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import setuptools
setuptools.setup(
name='PyKMIP',
version='0.1.0',
version='0.1.1',
description='KMIP v1.1 library',
keywords='KMIP',
author='Peter Hamilton',
@ -26,6 +26,10 @@ setuptools.setup(
license='Apache License, Version 2.0',
packages=setuptools.find_packages(exclude=["kmip.tests", "kmip.tests.*"]),
package_data={'kmip': ['logconfig.ini']},
install_requires=[
"enum34",
"sqlalchemy",
],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",