From 27b1e2ab083bfeefd8a6e4bda439a0d8ecdb25c1 Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Fri, 12 Sep 2014 11:04:44 -0400 Subject: [PATCH] PyKMIP - Release v0.1.1 This update includes the following bug fix: * support for auto-installing third-party library dependencies --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfbc895..caba163 100644 --- a/setup.py +++ b/setup.py @@ -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",