aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVosjedev <vosje@vosjedev.net>2025-10-28 16:56:42 +0100
committerVosjedev <vosje@vosjedev.net>2025-10-28 16:56:42 +0100
commit357abea4e89204ed0df7dd4e8f9722529f4a7363 (patch)
tree3f9d01f9e14f636fc99631f0c9a128f6de1dae54
parent4ed7d68b5d6d694fd61a3a2a732f45ae1510b5b0 (diff)
downloadacit-357abea4e89204ed0df7dd4e8f9722529f4a7363.tar.gz
acit-357abea4e89204ed0df7dd4e8f9722529f4a7363.tar.bz2
acit-357abea4e89204ed0df7dd4e8f9722529f4a7363.tar.xz
Allow starting with python -m acit
-rw-r--r--src/acit/__main__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/acit/__main__.py b/src/acit/__main__.py
new file mode 100644
index 0000000..1505c78
--- /dev/null
+++ b/src/acit/__main__.py
@@ -0,0 +1,6 @@
+
+from . import run
+
+if __name__=="__main__":
+ run()
+