From d6fe99095869830bdeebd15530c767dc548d9a4e Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 10 Sep 2024 05:54:28 +0100 Subject: [PATCH] chore:add_description --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index e0395b0..e49556c 100644 --- a/setup.py +++ b/setup.py @@ -68,6 +68,9 @@ def get_version(): return version +with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f: + long_description = f.read() + setup( # this is the package name that goes on pip name=PYPI_NAME, @@ -80,5 +83,7 @@ def get_version(): include_package_data=True, install_requires=get_requirements("requirements.txt"), keywords='ovos skill plugin', + long_description=long_description, + long_description_content_type="text/markdown", entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT} )