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.isort]
profile = "black"
multi_line_output = 3
[tool.pytest.ini_options]
markers = [
"ofx_file: ofx fixture file to use in test",
"lgr_file: lgr fixture file to use in test",
"csv_file: csv fixture file to use in test",
"ledger_impls: List of Ledger implementations (as wrapper classes) that this test applies to. Default is all."
]
[tool.poetry]
name = "ledger-autosync"
version = "1.2.0"
description = "Automatically sync your bank's data with ledger"
authors = ["Erik Hetzner <egh@e6h.org>"]
license = "GPLv3"
homepage = "https://github.com/egh/ledger-autosync"
repository = "https://github.com/egh/ledger-autosync"
keywords = ["ledger", "accounting"]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Office/Business :: Financial",
]
packages = [
{ include = "ledgerautosync" }
]
[tool.poetry.scripts]
"ledger-autosync" = "ledgerautosync.cli:run"
"hledger-autosync" = "ledgerautosync.cli:run"
[tool.poetry.dependencies]
python = ">=3.8"
ofxclient = "*"
ofxparse = "*"
lxml = "*"
[tool.poetry.dev-dependencies]
pytest = "*"
black = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
|