Repository URL to install this package:
|
Version:
0.0.9 ▾
|
highland-client
/
setup.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = [
'requests==2.3.0'
]
test_requirements = [
'mock==1.0.1'
]
setup(
name='highland-client',
version='0.0.9',
description='Python client for the Highland API',
long_description=readme + '\n\n' + history,
author='Docker',
author_email='docker-io@docker.com',
url='https://github.com/docker/highland-client',
packages=[
'highland_client',
],
package_dir={'highland_client':
'highland_client'},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
keywords='highland',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
test_suite='tests',
tests_require=test_requirements
)