create main for package

This commit is contained in:
gabriel becker 2025-04-26 17:16:13 +10:00
parent 808e2b55a2
commit a2bbc28aa6
2 changed files with 17 additions and 1 deletions

11
.gitignore vendored
View File

@ -1,3 +1,11 @@
*.csv
*.pdf
*.apkg
*.anki2
*.anki
*.epub
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
@ -161,3 +169,6 @@ cython_debug/
# Project Specific # Project Specific
scripts/ scripts/
data/

View File

@ -0,0 +1,5 @@
from .cli import main
if __name__ == '__main__':
main()