33 lines
731 B
TOML
33 lines
731 B
TOML
[build-system]
|
|
requires = ["setuptools>=67", "wheel", "setuptools-git-versioning>=2.0,<3"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[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"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."] |