schmeckels/pyproject.toml
2023-07-19 22:56:35 +02:00

43 lines
865 B
TOML

[tool.poetry]
name = "schmeckels"
version = "0.0.1"
description = "Small tool to get an overview of your personal finances"
authors = ["Felix Breidenstein <mail@felixbreidenstein.de>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6.1"
SQLAlchemy = "^1.3.20"
Flask = "^1.1.2"
mt-940 = "^4.23.0"
xdg = "^5.0.0"
PyYAML = "^5.3.1"
colorful = "^0.5.4"
schwifty = "^2020.9.0"
prompt-toolkit = "^3.0.8"
pytest = "^6.1.2"
python-dateutil = "^2.8.1"
[tool.poetry.dev-dependencies]
pytest = "^6.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
schmeckels = "schmeckels.cli:main"
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
default_section = "THIRDPARTY"
known_first_party = []
known_third_party = []
[tool.black]
line-length = 120
[tool.ruff]
ignore = ["E501"]