24 lines
620 B
TOML
24 lines
620 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "switchinglogfilehandlers"
|
|
version = "0.0.3"
|
|
authors = [
|
|
{ name="Peter J. Holzer", email="hjp@hjp.at" },
|
|
]
|
|
description = "A collection of switching log file handlers"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.hjp.at:3000/hjp/switchinglogfilehandlers"
|
|
"Bug Tracker" = "https://git.hjp.at:3000/hjp/switchinglogfilehandlers/issues"
|
|
|