setup now functional

This commit is contained in:
2014-12-19 02:36:17 +01:00
parent fc5a206686
commit bf9098102e
4 changed files with 71 additions and 0 deletions

9
bam_cli.py Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import sys
if __name__ == '__main__':
from bam.cli import main
sys.exit(main(sys.argv[1:]))