mirror of https://github.com/docker/docker-py.git
26 lines
765 B
Python
26 lines
765 B
Python
#!/usr/bin/env python
|
|
import os
|
|
from setuptools import setup
|
|
|
|
ROOT_DIR = os.path.dirname(__file__)
|
|
SOURCE_DIR = os.path.join(ROOT_DIR)
|
|
|
|
test_requirements = []
|
|
setup(
|
|
name="docker-py",
|
|
version='0.2.0',
|
|
description="Python client for Docker.",
|
|
packages=['docker'],
|
|
install_requires=['requests', 'six'] + test_requirements,
|
|
zip_safe=False,
|
|
test_suite='tests',
|
|
classifiers=['Development Status :: 4 - Beta',
|
|
'Environment :: Other Environment',
|
|
'Intended Audience :: Developers',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Topic :: Utilities',
|
|
'License :: OSI Approved :: Apache Software License'
|
|
],
|
|
)
|