35 lines
654 B
TOML
35 lines
654 B
TOML
[project]
|
|
name = "finanz-cockpit"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Mathias Scheider", email = "mathias2784@web.de" }
|
|
]
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"alembic>=1.19.1",
|
|
"argparse>=1.4.0",
|
|
"dotenv>=0.9.9",
|
|
"pydantic>=2.13.5",
|
|
"pytest>=9.1.1",
|
|
"python-dotenv>=1.2.3",
|
|
"sqlalchemy>=2.0.52",
|
|
]
|
|
|
|
[project.scripts]
|
|
finanz-cockpit = "src:main"
|
|
|
|
[tool.uv.build-backend]
|
|
module-name = "src"
|
|
module-root = ""
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.12.9,<0.13.0"]
|
|
build-backend = "uv_build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"polyfactory>=3.3.0",
|
|
]
|