35 lines
746 B
TOML
35 lines
746 B
TOML
[tool.poetry]
|
|
name = "homebank"
|
|
version = "0.0.1"
|
|
description = "Read Homebank XML files"
|
|
license = "MIT"
|
|
authors = [
|
|
"Jonny007-MKD <me@jonny007-mkd.de>"
|
|
]
|
|
readme = "README.md"
|
|
repository = "https://git.nordlichter-brv.de/Jonny007-MKD/homebank"
|
|
keywords = [ "homebank", "xhb" ]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.7"
|
|
lxml = "^4.6"
|
|
|
|
[tool.poetry.group.test.dependencies]
|
|
mypy = "*"
|
|
pre-commit = "^2.20.0"
|
|
|
|
[tool.mypy]
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
ignore_missing_imports = true
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|