homebank/pyproject.toml

35 lines
725 B
TOML
Raw Normal View History

[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.5.0"
lxml = "^4.6"
[tool.poetry.group.test.dependencies]
mypy = "*"
[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"