From 7b616a0a41a6bd323686b17cde0b307a17b20bc3 Mon Sep 17 00:00:00 2001 From: Red5d Date: Sat, 2 Jan 2016 23:54:07 -0500 Subject: [PATCH] Fixed actual script not being included and upped version number to account for change. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d6a0cee..8356695 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup( name = "docker-autocompose", - version = "1.0", + version = "1.0.1", description = "Generate a docker-compose yaml definition from a running container", url = "https://github.com/Red5d/docker-autocompose", author = "Red5d", @@ -9,6 +9,7 @@ keywords = "docker yaml container", packages = find_packages(), install_requires = ['pyaml>=15.8.2', 'docker-py>=1.6.0'], + scripts = ['autocompose.py'], entry_points={ 'console_scripts': [ 'autocompose = autocompose:main',