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(),