Browse Source

Add a valid development entry point kalliope.py at the root of the project.

Thomas Pierson 8 years ago
parent
commit
a0335ba900
2 changed files with 6 additions and 3 deletions
  1. 6 0
      kalliope.py
  2. 0 3
      kalliope/__init__.py

+ 6 - 0
kalliope.py

@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+# coding: utf8
+import kalliope
+
+if __name__ == '__main__':
+    kalliope.main()

+ 0 - 3
kalliope/__init__.py

@@ -112,6 +112,3 @@ def configure_logging(debug=None):
         logger.setLevel(logging.INFO)
 
     logger.debug("Logger ready")
-
-if __name__ == '__main__':
-    main()