-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.31 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
[tool.poetry]
name = "beancount-ing"
version = "1.0.0"
description = "Beancount Importer for ING (DE) CSV exports"
readme = "README.md"
authors = ["Siddhant Goel <me@sgoel.dev>"]
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
include = ["README.md", "LICENSE.txt"]
repository = "https://github.com/siddhantgoel/beancount-ing"
keywords = ["banking", "beancount", "cli-accounting", "finance"]
[tool.poetry.dependencies]
python = "^3.8"
beancount = "^3.0.0"
beangulp = "^0.1.1"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.0"
ruff = ">=0.5.1,<0.9.0"
pytest = "^8.2.2"
[tool.poetry.scripts]
beancount-ing-ec = "beancount_ing.cli:ec"
[tool.taskipy.tasks]
lint = "ruff check beancount_ing/ tests/"
test = "pytest tests/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"