From: Armaan Bhojwani Date: Wed, 10 Feb 2021 00:38:21 +0000 (-0500) Subject: Fix project structure X-Git-Tag: v0.6.0~29 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=d0ab8048174d27d62fe613c588de1c76a54b2ff5 Fix project structure I'm still wrapping my head around __init__.py and __main__.py --- diff --git a/lightcards/__init__.py b/lightcards/__init__.py index e69de29..82a361e 100644 --- a/lightcards/__init__.py +++ b/lightcards/__init__.py @@ -0,0 +1,4 @@ +import sys +from lightcards.runner import main + +sys.exit(main()) diff --git a/lightcards/__main__.py b/lightcards/__main__.py deleted file mode 100644 index 82a361e..0000000 --- a/lightcards/__main__.py +++ /dev/null @@ -1,4 +0,0 @@ -import sys -from lightcards.runner import main - -sys.exit(main())