Fix setup file and reformat autocompose to fit setup requirements.

This commit is contained in:
Red5d
2016-01-02 23:11:51 -05:00
parent b80db6fa8f
commit 0f1a9e9308
2 changed files with 87 additions and 79 deletions

View File

@@ -3,10 +3,10 @@ setup(
name = "docker-autocompose",
version = "1.0",
packages = find_packages(),
install_requires = ['pyaml, docker-py'],
install_requires = ['pyaml>=15.8.2', 'docker-py>=1.6.0'],
entry_points={
'console_scripts': [
'autocompose = autocompose',
'autocompose = autocompose:main',
]
}
)