From 977fc316593689801b8a702216d4870fd1d682e3 Mon Sep 17 00:00:00 2001 From: Franciszek Lajszczak Date: Wed, 23 Aug 2023 16:05:32 +0200 Subject: [PATCH] README pip test --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4470ab3..e5e51cf 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,16 @@ LONG_DESCRIPTION = 'Python 2D parametric DXF rendering engine.' +def readme(): + with open('README.md') as f: + return f.read() + + setup( name="qsketchmetric", version=VERSION, description=DESCRIPTION, - long_description=LONG_DESCRIPTION, + long_description=readme(), url="https://github.com/MadScrewdriver/qsketchmetric", project_urls={ "Documentation": "https://qsketchmetric.readthedocs.io/",