From c9ae5579238862e57387a27cb253cb930ecf397c Mon Sep 17 00:00:00 2001 From: Jammy2211 Date: Mon, 4 May 2026 13:18:07 +0100 Subject: [PATCH] docs: convert README.rst to MyST README.md (pass 2) Switches the project README from RST to MyST Markdown for consistency with the rest of the docs (cf. PyAutoFit#1245). Updates pyproject.toml to declare the new content-type so PyPI renders the long_description correctly, and updates MANIFEST.in to ship the new file in the sdist. Co-Authored-By: Claude Opus 4.7 (1M context) --- MANIFEST.in | 2 +- README.rst => README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename README.rst => README.md (92%) diff --git a/MANIFEST.in b/MANIFEST.in index b919828..7a2909e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,7 +1,7 @@ # MANIFEST.in exclude .gitignore include LICENSE -include README.rst +include README.md prune .git prune build prune dist diff --git a/README.rst b/README.md similarity index 92% rename from README.rst rename to README.md index d5f1cf6..c7cec97 100644 --- a/README.rst +++ b/README.md @@ -1 +1 @@ -# PyAutoConf +# PyAutoConf diff --git a/pyproject.toml b/pyproject.toml index eff209a..3a759be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "autoconf" dynamic = ["version"] description = "PyAuto Configration" -readme = { file = "README.rst", content-type = "text/x-rst" } +readme = { file = "README.md", content-type = "text/markdown" } license = { text = "MIT" } requires-python = ">=3.9" authors = [