feat: initial commit

This commit is contained in:
2021-11-21 13:58:52 +00:00
commit fb7fec7ea6
53 changed files with 4920 additions and 0 deletions

12
tembo/__main__.py Normal file
View File

@@ -0,0 +1,12 @@
"""
Entrypoint module.
Used when using `python -m tembo` to invoke the CLI.
"""
import sys
from tembo.cli.cli import main
if __name__ == "__main__":
sys.exit(main())