2014-08-11 16:34:30 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
|
|
# implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2015-06-24 12:31:53 -04:00
|
|
|
import os
|
2015-09-17 14:32:14 -04:00
|
|
|
import re
|
2014-08-11 16:34:30 -04:00
|
|
|
import setuptools
|
|
|
|
|
2015-06-25 14:27:31 -04:00
|
|
|
# Dynamically set __version__
|
|
|
|
version_path = os.path.join(os.path.dirname(
|
2015-06-24 12:31:53 -04:00
|
|
|
os.path.realpath(__file__)), 'kmip', 'version.py')
|
2015-06-25 14:27:31 -04:00
|
|
|
with open(version_path, 'r') as version_file:
|
2015-09-17 14:32:14 -04:00
|
|
|
mo = re.search(r"^.*= '(\d\.\d\.\d)'$", version_file.read(), re.MULTILINE)
|
|
|
|
__version__ = mo.group(1)
|
2015-06-11 14:25:55 -04:00
|
|
|
|
2014-08-11 16:34:30 -04:00
|
|
|
setuptools.setup(
|
|
|
|
name='PyKMIP',
|
2015-06-11 14:25:55 -04:00
|
|
|
version=__version__,
|
2014-08-11 16:34:30 -04:00
|
|
|
description='KMIP v1.1 library',
|
|
|
|
keywords='KMIP',
|
|
|
|
author='Peter Hamilton',
|
|
|
|
author_email='peter.hamilton@jhuapl.edu',
|
2014-08-13 19:23:05 -04:00
|
|
|
url='https://github.com/OpenKMIP/PyKMIP',
|
2014-08-11 16:34:30 -04:00
|
|
|
license='Apache License, Version 2.0',
|
|
|
|
packages=setuptools.find_packages(exclude=["kmip.tests", "kmip.tests.*"]),
|
2015-05-14 13:08:02 -04:00
|
|
|
package_data={'kmip': ['kmipconfig.ini', 'logconfig.ini'],
|
2014-12-10 17:49:30 -05:00
|
|
|
'kmip.demos': ['certs/server.crt', 'certs/server.key']},
|
2016-04-11 09:07:59 -04:00
|
|
|
entry_points={
|
|
|
|
'console_scripts':[
|
|
|
|
'pykmip-server = kmip.services.server.server:main'
|
|
|
|
]
|
|
|
|
},
|
2014-09-12 11:04:44 -04:00
|
|
|
install_requires=[
|
2016-04-11 09:07:59 -04:00
|
|
|
"cryptography",
|
2014-09-12 11:04:44 -04:00
|
|
|
"enum34",
|
2014-11-18 15:19:56 -05:00
|
|
|
"six",
|
2016-04-11 09:07:59 -04:00
|
|
|
"sqlalchemy"
|
2014-09-12 11:04:44 -04:00
|
|
|
],
|
2014-08-11 16:34:30 -04:00
|
|
|
classifiers=[
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: Apache Software License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: POSIX",
|
|
|
|
"Operating System :: POSIX :: BSD",
|
|
|
|
"Operating System :: POSIX :: Linux",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
"Programming Language :: Python :: 2.7",
|
2014-08-28 14:04:23 -04:00
|
|
|
"Programming Language :: Python :: 3.3",
|
|
|
|
"Programming Language :: Python :: 3.4",
|
2016-11-11 15:17:20 -05:00
|
|
|
"Programming Language :: Python :: 3.5",
|
2017-01-06 15:05:36 -05:00
|
|
|
"Programming Language :: Python :: 3.6",
|
2014-08-11 16:34:30 -04:00
|
|
|
],
|
|
|
|
)
|