Skip to content

Commit

Permalink
chore(docs): add a long description to PyPi (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray authored Mar 10, 2024
1 parent 9ba0f2b commit d90f7ef
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ def get_version():
version += f"a{alpha}"
return version

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

setup(
name='ovos-bus-client',
Expand All @@ -58,17 +60,16 @@ def get_version():
url='https://github.com/OpenVoiceOS/ovos-bus-client',
license='Apache-2.0',
author='JarbasAI',
author_email='jarbasai@mailfence.com',
author_email='jarbas@openvoiceos.com',
description='OVOS Messagebus Client',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',

'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
Expand Down

0 comments on commit d90f7ef

Please sign in to comment.