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 /pyproject.toml | |
| parent | 74b383a02714443318811ba5a286f5dbbbe09bad (diff) | |
| download | firefly-cli-a305c9a0c024e912548631e464e5f08ac24b1562.tar.gz firefly-cli-a305c9a0c024e912548631e464e5f08ac24b1562.zip | |
chore: project scaffold, GPLv2 license, CLAUDE.md
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..e8fafc6 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[build-system] +requires = ["setuptools>=61"] +build-backend = "setuptools.build_meta" + +[project] +name = "firefly-cli" +version = "0.1.0" +description = "CLI tool for agent interaction with Firefly III" +requires-python = ">=3.11" +license = { text = "GPL-2.0-only" } +authors = [{ name = "Danilo M.", email = "danix@danix.xyz" }] +dependencies = [] + +[project.scripts] +firefly = "firefly_cli.cli:main" + +[tool.setuptools.packages.find] +include = ["firefly_cli*"] |
