allow running compose from git

with:

```
$ git clone docker/compose && cd compose
$ export PYTHONPATH="$PWD:$PYTHONPATH"
$ python -m compose --help
```

Signed-off-by: Tomas Tomecek <ttomecek@redhat.com>
This commit is contained in:
Tomas Tomecek 2015-12-26 11:03:58 +01:00
parent ea8cc1c3dc
commit adde805829
1 changed files with 3 additions and 0 deletions

3
compose/__main__.py Normal file
View File

@ -0,0 +1,3 @@
from compose.cli.main import main
main()