aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: ffcdc4db67bfd32263dfffef9eafa32ebe1b6073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tool.poetry]
name = "beancount-extras-kris7t"
version = "0.1.0"
description = "Miscellaneous plugins and importers for Beancount"
authors = ["Kristóf Marussy <kristof@marussy.com>"]
license = "GPL-2.0-only"

[tool.poetry.dependencies]
python = "^3.9"
beancount = { path = "beancount", develop = true }
"pdfminer.six" = "^20201018"
requests = { version = "^2.25.1", optional = true, extras = ["socks"] }
SecretStorage = { version = "^3.3.0", optional = true }

[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
mypy = "^0.800"

[tool.poetry.extras]
transferwise = ["requests", "SecretStorage"]

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