blob: 78125406815f940ba1fe90b413c776006dc60db4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "firefly-iii-agent"
version = "0.2.2"
description = "CLI tool for agent interaction with Firefly III"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-2.0-only" }
authors = [{ name = "Danilo M.", email = "danix@danix.xyz" }]
keywords = ["firefly-iii", "cli", "agent", "finance"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial",
"Topic :: Utilities",
]
dependencies = []
[project.urls]
Homepage = "https://git.danix.xyz/firefly-cli/"
Repository = "https://git.danix.xyz/firefly-cli/"
[project.scripts]
firefly = "firefly_cli.cli:main"
[tool.setuptools.packages.find]
include = ["firefly_cli*"]
|