30 lines
643 B
TOML
30 lines
643 B
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "kontor-cli"
|
|
version = "0.1.0"
|
|
description = "Kontor CLI Application"
|
|
authors = [
|
|
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"},
|
|
]
|
|
maintainers = [
|
|
{name = "Thomas Peetz", email = "thomas.peetz@thpeetz.de"},
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Topic :: Utilities",
|
|
]
|
|
|
|
dependencies = [
|
|
]
|
|
requires-python = ">= 3.10"
|
|
|
|
[projects.scripts]
|
|
kontor = "kontor.main:main"
|