Skip to content

Commit

Permalink
chore(docs): add a long description to PyPi (#429)
Browse files Browse the repository at this point in the history
partially fulfills #390
  • Loading branch information
mikejgray authored Mar 10, 2024
1 parent 1e9cb05 commit c694bd9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,17 @@ def required(requirements_file):
if pkg.strip() and not pkg.startswith("#")]


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

setup(
name='ovos-core',
version=get_version(),
license='Apache-2.0',
url='https://github.com/OpenVoiceOS/ovos-core',
description='mycroft-core packaged as a library',
description='The spiritual successor to Mycroft AI, OVOS is flexible voice assistant software that can be run almost anywhere!',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=required('requirements/requirements.txt'),
extras_require={
'mycroft': required('requirements/mycroft.txt'),
Expand Down

0 comments on commit c694bd9

Please sign in to comment.