From a305c9a0c024e912548631e464e5f08ac24b1562 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Tue, 30 Jun 2026 10:38:01 +0200 Subject: chore: project scaffold, GPLv2 license, CLAUDE.md --- firefly_cli/__init__.py | 5 +++++ firefly_cli/__main__.py | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 firefly_cli/__init__.py create mode 100644 firefly_cli/__main__.py (limited to 'firefly_cli') 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. +# 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. GPL-2.0-only +from firefly_cli.cli import main + +if __name__ == "__main__": + raise SystemExit(main()) -- cgit v1.2.3