This is an automated email from the ASF dual-hosted git repository.
asorokoumov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/otava.git
The following commit(s) were added to refs/heads/master by this push:
new b8af75b PyPI Project description contains ASF incubating disclaimer
(#112)
b8af75b is described below
commit b8af75b0e3d875282d53543e75d0507206880c27
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Sat Dec 13 13:05:08 2025 -0800
PyPI Project description contains ASF incubating disclaimer (#112)
---
hatch_build.py | 43 +++++++++++++++++++++++++++++++++++++++++++
pyproject.toml | 6 +++++-
2 files changed, 48 insertions(+), 1 deletion(-)
diff --git a/hatch_build.py b/hatch_build.py
new file mode 100644
index 0000000..4f642eb
--- /dev/null
+++ b/hatch_build.py
@@ -0,0 +1,43 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+from pathlib import Path
+
+from hatchling.metadata.plugin.interface import MetadataHookInterface
+
+
+class CustomMetadataHook(MetadataHookInterface):
+ """Dynamically generate PyPI README by combining README.md and
DISCLAIMER."""
+
+ def update(self, metadata):
+ """Called during build to update package metadata."""
+ # Read README.md
+ readme_path = Path(self.root) / "README.md"
+ readme_content = readme_path.read_text(encoding="utf-8")
+
+ # Read DISCLAIMER
+ disclaimer_path = Path(self.root) / "DISCLAIMER"
+ disclaimer_content = disclaimer_path.read_text(encoding="utf-8")
+
+ # Combine them
+ combined_readme = f"{readme_content}\n##
Disclaimer\n\n{disclaimer_content}"
+
+ # Update metadata
+ metadata["readme"] = {
+ "content-type": "text/markdown",
+ "text": combined_readme
+ }
diff --git a/pyproject.toml b/pyproject.toml
index 71a4e3e..0e2e18d 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -19,7 +19,7 @@
name = "apache-otava"
version = "1.0.0"
description = "Apache Otava (Incubating): Change Detection for Continuous
Performance Engineering"
-readme = "README.md"
+dynamic = ["readme"]
requires-python = ">=3.10,<3.15"
license = { text = "Apache-2.0" }
authors = [
@@ -84,6 +84,10 @@ Repository = "https://github.com/apache/otava"
requires = ["hatchling"]
build-backend = "hatchling.build"
+# This piece of Python build magic invokes hatch_build.py that
+# generates PyPI project description from README.md and DISCLAIMER
+[tool.hatch.metadata.hooks.custom]
+
[tool.hatch.build.targets.wheel]
packages = ["otava"]