From baf66a61538093521528d3bf431142e5fbad4d89 Mon Sep 17 00:00:00 2001 From: JenChieh Date: Tue, 17 Dec 2024 16:38:13 -0800 Subject: [PATCH] add long text --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8dd0ae3..fe772dc 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,10 @@ +from pathlib import Path from setuptools import setup setup( name="the-flx", description="Rewrite emacs-flx in Python", - version="0.1.1", + version="0.1.2", url="https://github.com/the-flx/flx.py", project_urls={ "Source Code": "https://github.com/the-flx/flx.py", @@ -14,4 +15,6 @@ python_requires=">=3.9", packages=["flx"], install_requires= [], - ) + long_description=Path("README.md").read_text(), + long_description_content_type="text/markdown", +)