mirror of https://github.com/OpenKMIP/PyKMIP.git
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:
parent
97ae864196
commit
27b1e2ab08
6
setup.py
6
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",
|
||||
|
|
Loading…
Reference in New Issue