diff options
Diffstat (limited to 'firefly_cli')
| -rw-r--r-- | firefly_cli/__init__.py | 5 | ||||
| -rw-r--r-- | firefly_cli/__main__.py | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/firefly_cli/__init__.py b/firefly_cli/__init__.py new file mode 100644 index 0000000..f50a029 --- /dev/null +++ b/firefly_cli/__init__.py @@ -0,0 +1,5 @@ +# firefly-cli — CLI for Firefly III +# Copyright (C) 2026 Danilo M. <danix@danix.xyz> +# Licensed under the GNU General Public License v2.0 only. + +__version__ = "0.1.0" diff --git a/firefly_cli/__main__.py b/firefly_cli/__main__.py new file mode 100644 index 0000000..1399e53 --- /dev/null +++ b/firefly_cli/__main__.py @@ -0,0 +1,5 @@ +# Copyright (C) 2026 Danilo M. <danix@danix.xyz> GPL-2.0-only +from firefly_cli.cli import main + +if __name__ == "__main__": + raise SystemExit(main()) |
