43 lines
808 B
TOML
43 lines
808 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.8"
|
|
SQLAlchemy = "*"
|
|
Flask = "*"
|
|
mt-940 = "*"
|
|
xdg = "*"
|
|
PyYAML = "*"
|
|
colorful = "*"
|
|
schwifty = "*"
|
|
prompt-toolkit = "*"
|
|
pytest = "*"
|
|
python-dateutil = "*"
|
|
|
|
|
|
[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"]
|