30 lines
596 B
TOML
30 lines
596 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
|
|
[project]
|
|
name = "kontor-cli"
|
|
version = "0.1.0"
|
|
dependencies = [
|
|
"mariadb",
|
|
"sqlmodel",
|
|
"pathlib",
|
|
"platformdirs",
|
|
"pyyaml",
|
|
"beautifulsoup4",
|
|
]
|
|
requires-python = ">=3.10"
|
|
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]
|
|
kontor = "kontor::main"
|