From bd7a44303c3dd8c68df759004c280ba1ba33b24b Mon Sep 17 00:00:00 2001 From: Infinitode Date: Thu, 26 Sep 2024 13:30:40 +0200 Subject: [PATCH] Updated PYPI project description. --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2b95f57..a5282a9 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,15 @@ from setuptools import setup, find_packages +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setup( name='funcprofiler', version='{{VERSION_PLACEHOLDER}}', author='Infinitode Pty Ltd', author_email='infinitode.ltd@gmail.com', - description='An open-source Python library that can be used to profile functions.', - long_description='An open-source Python library for finding bottlenecks in code. Includes function profiling, data exports, logging, and even line-by-line profiling, for more control.', + description='An open-source Python library for finding bottlenecks in code. Includes function profiling, data exports, logging, and even line-by-line profiling, for more control.', + long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/infinitode/valx', packages=find_packages(),