Added additional info to setup file.

This commit is contained in:
Red5d
2016-01-02 23:24:06 -05:00
parent 0f1a9e9308
commit fdc4c2a71d

View File

@@ -2,6 +2,11 @@ from setuptools import setup, find_packages
setup(
name = "docker-autocompose",
version = "1.0",
description = "Generate a docker-compose yaml definition from a running container",
url = "https://github.com/Red5d/docker-autocompose",
author = "Red5d",
license = "GPLv2",
keywords = "docker yaml container",
packages = find_packages(),
install_requires = ['pyaml>=15.8.2', 'docker-py>=1.6.0'],
entry_points={