Skip to content

Commit

Permalink
chore:add_description (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Sep 10, 2024
1 parent 676fbbd commit 0c41308
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ def get_version():
return version


with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f:
long_description = f.read()

setup(
# this is the package name that goes on pip
name=PYPI_NAME,
Expand All @@ -80,5 +83,7 @@ def get_version():
include_package_data=True,
install_requires=get_requirements("requirements.txt"),
keywords='ovos skill plugin',
long_description=long_description,
long_description_content_type="text/markdown",
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)

0 comments on commit 0c41308

Please sign in to comment.