mirror of
https://github.com/OpenKMIP/PyKMIP.git
synced 2025-07-23 22:14:25 +02:00
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(
|
setuptools.setup(
|
||||||
name='PyKMIP',
|
name='PyKMIP',
|
||||||
version='0.1.0',
|
version='0.1.1',
|
||||||
description='KMIP v1.1 library',
|
description='KMIP v1.1 library',
|
||||||
keywords='KMIP',
|
keywords='KMIP',
|
||||||
author='Peter Hamilton',
|
author='Peter Hamilton',
|
||||||
@ -26,6 +26,10 @@ setuptools.setup(
|
|||||||
license='Apache License, Version 2.0',
|
license='Apache License, Version 2.0',
|
||||||
packages=setuptools.find_packages(exclude=["kmip.tests", "kmip.tests.*"]),
|
packages=setuptools.find_packages(exclude=["kmip.tests", "kmip.tests.*"]),
|
||||||
package_data={'kmip': ['logconfig.ini']},
|
package_data={'kmip': ['logconfig.ini']},
|
||||||
|
install_requires=[
|
||||||
|
"enum34",
|
||||||
|
"sqlalchemy",
|
||||||
|
],
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user