diff options
author | Martin Fischer <martin@push-f.com> | 2025-03-22 11:47:54 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-03-23 23:36:40 +0100 |
commit | e451a31ed7a0d5fa268a2065906c6fb803e6ae26 (patch) | |
tree | 8dde16820972653c6b67e08b4e2319c43aa18db1 /pyproject.toml |
initial commitv0.0.1
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7640b73 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,25 @@ +[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 = "MIT" +license-files = ["LICENSE"] + +[project.urls] +repository = "https://git.push-f.com/logformat" + +[tool.setuptools] +packages = ["logformat"] + +[tool.black] +line-length = 100 |