Skip to content

Commit

Permalink
Merge pull request #1305 from bfirsh/update-setup-py
Browse files Browse the repository at this point in the history
Update setup.py and things
shin- authored Nov 28, 2016
2 parents 3518c9f + fc9f7e2 commit f36c289
Showing 3 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@

**Warning:** This readme is for the development version of docker-py, which is significantly different to the stable version. [Documentation for the stable version is here.](https://docker-py.readthedocs.io/)

A Python library for the Docker API. It lets you do anything the `docker` command does, but from within Python apps – run containers, manage containers, manage Swarms, etc.
A Python library for the Docker Engine API. It lets you do anything the `docker` command does, but from within Python apps – run containers, manage containers, manage Swarms, etc.

## Installation

2 changes: 1 addition & 1 deletion docker/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = "1.11.0-dev"
version = "2.0.0-dev"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")])
15 changes: 6 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
import os
import sys

from setuptools import setup
from setuptools import setup, find_packages


ROOT_DIR = os.path.dirname(__file__)
@@ -43,22 +43,19 @@
pass

setup(
name="docker-py",
name="docker",
version=version,
description="Python client for Docker.",
description="A Python library for the Docker Engine API.",
long_description=long_description,
url='https://github.com/docker/docker-py/',
packages=[
'docker', 'docker.api', 'docker.transport', 'docker.utils',
'docker.types',
],
url='https://github.com/docker/docker-py',
packages=find_packages(exclude=["tests.*", "tests"]),
install_requires=requirements,
tests_require=test_requirements,
extras_require=extras_require,
zip_safe=False,
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',

0 comments on commit f36c289

Please sign in to comment.