From ebfa41c2e6f28383c0fb18ecf2ab6cad7b58bbb1 Mon Sep 17 00:00:00 2001 From: Quentin Ferrand Date: Thu, 28 Apr 2022 21:29:41 +0200 Subject: [PATCH] add MANIFEST.in to finally fix pypi errs --- MANIFEST.in | 1 + pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..bb3ec5f --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include README.md diff --git a/pyproject.toml b/pyproject.toml index a0b655f..b393fe6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tenkan" -version = "0.1.5" +version = "0.1.3" description = "RSS/atom feed converter from html to gemini" authors = ["Quentin Ferrand "] readme = 'README.md' diff --git a/setup.py b/setup.py index bc70cea..20fc3de 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ here = os.path.abspath(os.path.dirname(__file__)) setup( name='tenkan', - version='0.1.9', + version='0.1.3', long_description=open('README.md').read(), description='RSS/atom feed converter from html to gemini', long_description_content_type='text/markdown',