summarylogtreecommitdiffstats
path: root/poetry.py
blob: 91eb35d501fefdb15c061eb5723b4becd3435a36 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python
import sys

POETRY_DIR = '/usr/lib/poetry'
sys.path.insert(0, POETRY_DIR)

if __name__ == '__main__':
    from poetry.console import main
    sys.exit(main())