31 lines
672 B
TOML
31 lines
672 B
TOML
[project]
|
|
name = "kontor-scripts"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"mariadb",
|
|
"pathlib",
|
|
"platformdirs",
|
|
"pyyaml",
|
|
"beautifulsoup4",
|
|
"sqlalchemy>=2.0.40",
|
|
"requests>=2.32.3",
|
|
"fastapi[standard]>=0.115.12",
|
|
"pytest>=8.3.5",
|
|
"pytest-cov>=6.1.1",
|
|
]
|
|
requires-python = ">=3.12"
|
|
authors = [
|
|
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"}
|
|
]
|
|
maintainers = [
|
|
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"}
|
|
]
|
|
description = "CLI for Kontor application"
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Programming Language :: Python"
|
|
]
|
|
[project-scripts]
|
|
export = "export::main"
|