-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 794 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 794 Bytes
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
[build-system]
requires = ["setuptools==75.8.0"] # metadata-version = "2.2"
build-backend = "setuptools.build_meta"
[project]
name = "gahto"
version = "0.0.1"
authors = [
{name = "7heo", email = "7heo@users.noreply.github.com"}
]
readme = "README.md"
description = "GAHTO is a small Python module for creating GNUCash Account Hierarchy Template Objects natively in python, and eventually exporting them in XML as .gnucash-xea files."
requires-python = ">=3.9"
dependencies = [
"pint",
"iso-4217"
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {"text" = "BSD-3-Clause"}
[project.urls]
Homepage = "https://github.com/7heo/GAHTO"
Issues = "https://github.com/7heo/GAHTO/issues"
[tool.setuptools.package-data]
pkg = ["py.typed"]