Skip to content

Commit

Permalink
chore(docs): add a long description to PyPi
Browse files Browse the repository at this point in the history
Partially fufills OpenVoiceOS/ovos-core#390
  • Loading branch information
mikejgray authored Mar 10, 2024
1 parent 1465f7c commit 80f8b0b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ def required(requirements_file):
STT_PLUGIN_ENTRY_POINT = 'ovos-stt-plugin-dummy=ovos_plugin_manager.templates.stt:STT'
WW_PLUGIN_ENTRY_POINT = 'ovos-ww-plugin-dummy=ovos_plugin_manager.templates.hotwords:HotWordEngine'

with open("README.md", "r") as f:
long_description = f.read()

setup(
name='ovos-plugin-manager',
Expand All @@ -70,8 +72,10 @@ def required(requirements_file):
author='jarbasAi',
install_requires=required("requirements/requirements.txt"),
package_data={'': package_files('ovos-plugin-manager')},
author_email='jarbasai@mailfence.com',
author_email='jarbas@openvoiceos.com',
description='OpenVoiceOS plugin manager',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'intentbox.segmentation': SEG_PLUGIN_ENTRY_POINT,
'intentbox.tokenization': TOK_PLUGIN_ENTRY_POINT,
Expand Down

0 comments on commit 80f8b0b

Please sign in to comment.