summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: ae3b93d032b41d8e0f5e8aa5b3e514dc797e4092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[project]
name = "logformat"
version = "0.0.1"
authors = [
  { name="Martin Fischer", email="martin@push-f.com" },
]
description = "logfmt logging for Python"
requires-python = ">=3.13" # because of __static_attributes__

readme = "README.md"
classifiers = [
  "Programming Language :: Python :: 3",
  "Operating System :: OS Independent",
]
license = { file = "LICENSE" }

[project.urls]
repository = "https://git.push-f.com/logformat"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["logformat"]

[tool.black]
line-length = 100