-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.35 KB
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=68.0.0", "wheel", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["g2b"]
[tool.setuptools_scm]
[project]
name = "g2b"
description = "Initialize a beancount ledger from a GnuCash file"
dynamic = ["version"]
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Office/Business :: Financial :: Accounting",
]
keywords = [
"gnucash",
"beancount",
"finance",
"accounting"
]
dependencies = [
"beancount",
"click",
"rich",
"pyyaml",
"piecash"
]
[project.optional-dependencies]
dev = [
"black",
"pylint",
"pytest",
"pytest-cov",
"coverage",
"ruff",
"pre-commit"
]
[project.urls]
Homepage = "https://github.com/dtrai2/gnucash-csv-to-beancount"
Documentation = "https://github.com/dtrai2/gnucash-csv-to-beancount/blob/main/README.md"
Repository = "https://github.com/dtrai2/gnucash-csv-to-beancount"
Issues = "https://github.com/dtrai2/gnucash-csv-to-beancount/issues"
[project.scripts]
g2b = "g2b.g2b:main"
[tool.black]
line-length = 100
target-version = ['py311']