Fixed actual script not being included and upped version number to account for change.

This commit is contained in:
Red5d
2016-01-02 23:54:07 -05:00
parent fdc4c2a71d
commit 7b616a0a41

View File

@@ -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 @@ setup(
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',