1
0
mirror of https://github.com/docker/compose.git synced 2025-04-08 17:05:13 +02:00

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

3
compose/__main__.py Normal file

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