Skip to content

Commit

Permalink
chore(docs): add a long description to PyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray authored Mar 10, 2024
1 parent 1025830 commit fd89b5f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,17 @@ def get_version():
version += f"a{alpha}"
return version

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

setup(
name='ovos-messagebus',
version=get_version(),
license='Apache-2.0',
url='https://github.com/OpenVoiceOS/ovos-messagebus',
description='ovos-core reference python bus daemon',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=["ovos_messagebus"],
install_requires=required('requirements.txt'),
Expand Down

0 comments on commit fd89b5f

Please sign in to comment.