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 665f885 commit f84ed80
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ def required(requirements_file):
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]

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

setup(
name='ovos_utils',
Expand All @@ -66,8 +68,10 @@ def required(requirements_file):
include_package_data=True,
license='Apache',
author='jarbasAI',
author_email='[email protected]',
description='collection of simple utilities for use across the mycroft ecosystem',
author_email='[email protected]',
description='collection of simple utilities for use across the openvoiceos ecosystem',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'ovos-logs=ovos_utils.log_parser:ovos_logs'
Expand Down

0 comments on commit f84ed80

Please sign in to comment.