-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.36 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[project]
name = "pp-terminal"
description = "The Analytic Companion for Portfolio Performance"
authors = [{ name = "Christoph Massmann", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.13"
license = "GPL-3.0-or-later"
dependencies = [
"typer (>=0.15.1,<0.16.0)",
"pandas (>=2.2.3,<3.0.0)",
"rich (>=13.9.4,<14.0.0)",
"pandera (>=0.22.1,<0.23.0)",
"babel (>=2.16.0,<3.0.0)",
"lxml (>=5.3.0,<6.0.0)",
]
scripts = { pp-terminal = "pp_terminal.main:app" }
entry-points = { "pp_terminal.commands" = { "list.accounts" = "pp_terminal.commands.list_accounts:app", "simulate.vorabpauschale" = "pp_terminal.commands.simulate_vorabpauschale:app", "simulate.interest" = "pp_terminal.commands.simulate_interest:app", "validate" = "pp_terminal.commands.validate:app" } }
dynamic = ["version"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry]
packages = [
{ include = "pp_terminal" },
{ include = "ppxml2db" },
]
version = "0.0.0"
[tool.poetry.group.dev.dependencies]
pylint = "^3.3.3"
pytest = "^8.3.4"
mypy = "^1.14.1"
bandit = "^1.8.2"
[tool.poetry.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry-dynamic-versioning]
enable = true
bump = true
metadata = false