summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: e8fafc6c944c665f2bae586df14f4cbb89ebe0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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*"]