mirror of https://github.com/docker/docker-py.git
Merge pull request #1305 from bfirsh/update-setup-py
Update setup.py and things
This commit is contained in:
commit
f36c28926c
|
@ -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
|
||||
|
||||
|
|
|
@ -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
setup.py
15
setup.py
|
@ -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 @@ except IOError:
|
|||
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',
|
||||
|
|
Loading…
Reference in New Issue