diff options
| author | Danilo M. <danix@danix.xyz> | 2026-06-30 10:38:01 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-06-30 10:39:24 +0200 |
| commit | a305c9a0c024e912548631e464e5f08ac24b1562 (patch) | |
| tree | 865eb14c38089a997b8ba6bd351d38ba59a2425a /firefly_cli | |
| parent | 74b383a02714443318811ba5a286f5dbbbe09bad (diff) | |
| download | firefly-cli-a305c9a0c024e912548631e464e5f08ac24b1562.tar.gz firefly-cli-a305c9a0c024e912548631e464e5f08ac24b1562.zip | |
chore: project scaffold, GPLv2 license, CLAUDE.md
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()) |
