From 8aa13cb6389d7f2e3806c6cf97b11fad68357359 Mon Sep 17 00:00:00 2001 From: Dennis Burke Date: Sun, 18 Aug 2024 18:52:50 -0400 Subject: [PATCH] upload a pandoc-converted version of the README to pypi --- pyproject.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2774e7..50e2a57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,10 @@ dependencies = [ ] requires-python = '>=3.8' keywords = ['textile', 'text', 'html markup'] -readme = {file = 'tests/fixtures/README.txt', content-type = 'text/plain'} +# use pandoc to generate a markdown version of the README before uploading: +# pandoc README.textile -o README.md +# this kinda hurts to have to do this. +readme = {file = 'README.md', content-type = 'text/markdown'} [project.optional-dependencies] develop = ['pytest', 'pytest-cov']