-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
50 lines (45 loc) · 1.53 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
[tool.poetry]
name = "beancount-dkb"
version = "1.4.0"
description = "Beancount Importer for DKB CSV exports"
readme = "README.md"
authors = ["Siddhant Goel <[email protected]>"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Plugins",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
]
include = ["README.md", "LICENSE.txt"]
repository = "https://github.com/siddhantgoel/beancount-dkb"
keywords = ["banking", "beancount", "cli-accounting", "finance"]
[tool.poetry.dependencies]
python = "^3.8"
beancount = "^3.0.0"
beangulp = ">=0.1.1,<0.3.0"
babel = "^2.16.0"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.0"
ruff = ">=0.5.1,<0.10.0"
pytest = "^8.2.2"
[tool.poetry.scripts]
beancount-dkb-ec = "beancount_dkb.cli:ec"
beancount-dkb-credit = "beancount_dkb.cli:credit"
[tool.taskipy.tasks]
lint = "ruff check beancount_dkb/ tests/"
test = "pytest tests/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"