From f3a03281d91200c2497b31e7dedc4bd3b8f4a2e9 Mon Sep 17 00:00:00 2001 From: Shaun Walbridge Date: Fri, 16 Dec 2022 00:30:09 -0500 Subject: [PATCH 1/2] Add details about `flit_core` to README --- flit_core/README.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/flit_core/README.rst b/flit_core/README.rst index 6d9818f3..8ba0a839 100644 --- a/flit_core/README.rst +++ b/flit_core/README.rst @@ -1,6 +1,9 @@ flit_core --------- -This provides a PEP 517 build backend for packages using Flit. -The only public interface is the API specified by PEP 517, at ``flit_core.buildapi``. +This provides a `PEP 517 `_ build backend +for packages using `Flit `_. The only public +interface is the API specified by PEP 517, at ``flit_core.buildapi``. +See the `Flit documentation `_ for more +information. From 51a2762be780f242e17f1e994860e390fe9e17a3 Mon Sep 17 00:00:00 2001 From: Shaun Walbridge Date: Fri, 16 Dec 2022 00:30:50 -0500 Subject: [PATCH 2/2] Include README for flit-core rendering When currently viewing the flit-core package on PyPI, no description is provided which is typically a marker of unmaintained or lower quality packages (though the description does reference the main package). Add the README.rst to the output and link to the project documentation. --- flit_core/pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flit_core/pyproject.toml b/flit_core/pyproject.toml index e11bf62b..affb6d0a 100644 --- a/flit_core/pyproject.toml +++ b/flit_core/pyproject.toml @@ -11,6 +11,7 @@ authors=[ description = "Distribution-building parts of Flit. See flit package for more information" dependencies = [] requires-python = '>=3.6' +readme = "README.rst" license = {file = "LICENSE"} classifiers = [ "License :: OSI Approved :: BSD License", @@ -19,6 +20,7 @@ classifiers = [ dynamic = ["version"] [project.urls] +Documentation = "https://flit.pypa.io" Source = "https://github.com/pypa/flit" [tool.flit.sdist]