28 lines
626 B
TOML
28 lines
626 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"
|
|
|
|
|
|
[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"
|