summaryrefslogtreecommitdiff
path: root/manage.py
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2023-05-02 10:11:21 +0300
committerGitHub <noreply@github.com>2023-05-02 10:11:21 +0300
commit8b514dcdf2a25016c0befa63fca6404a6b805fe9 (patch)
treee68bd36592dca2655bd3c80bfd40b01b12e57a2a /manage.py
parent7c8a92bc80e7c2e09e88bdce770aae0c9554bb76 (diff)
Migrate all scripts to click (#64)
* WIP * Fix CLI group * Migrate build command * Cleanup and rebuild
Diffstat (limited to 'manage.py')
-rw-r--r--manage.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/manage.py b/manage.py
new file mode 100644
index 0000000..8fc8abe
--- /dev/null
+++ b/manage.py
@@ -0,0 +1,9 @@
+import os
+import click
+
+from cli import cli
+
+cli = click.CommandCollection(sources=[cli])
+
+if __name__ == "__main__":
+ cli()