summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 85aa9854ed6630f69b6529c01b1cb7d7d5483f36 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "beancount-ing"
version = "0.6.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 :: Only",
]
include = ["README.md", "LICENSE.txt"]
repository = "https://github.com/siddhantgoel/beancount-ing"
keywords = ["banking", "beancount", "cli-accounting", "finance"]

[tool.poetry.group.dev.dependencies]
taskipy = "^1.12.0"

[tool.poetry.dependencies]
python = "^3.8"

[tool.poetry.dev-dependencies]
beancount = "^2.3"
flake8 = "^5.0"
pytest = "^8.1"
black = "^24.3"

[tool.taskipy.tasks]
fmt = "black beancount_ing/ tests/"

lint-black  = "black --check beancount_ing/ tests/"
lint-flake8 = "flake8 beancount_ing/ tests/"
lint = "task lint-black && task lint-flake8"

test-pytest = "pytest tests/"
test = "task test-pytest"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"