Skip to content

Commit

Permalink
chore(docs): add a long description to PyPi (#17)
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 e9d896c commit 3c0baf2
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 @@ -53,13 +53,17 @@ def get_version():
version += f"a{alpha}"
return version

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

setup(
name="ovos-media",
version=get_version(),
license="Apache-2.0",
url="https://github.com/OpenVoiceOS/ovos-media",
description="ovos-core audio daemon client",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(include=['ovos*']),
install_requires=required('requirements/requirements.txt'),
Expand Down

0 comments on commit 3c0baf2

Please sign in to comment.