Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update requirements to stable versions #100

Merged
merged 2 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ovos-plugin-manager >= 0.0.24a5, < 0.1.0
ovos-plugin-manager >= 0.0.24, < 0.1.0
ovos-bus-client>=0.0.5, < 0.1.0
ovos-utils>=0.0.35a8, < 0.1.0
ovos_workshop >=0.0.12a44, < 0.1.0
ovos-utils>=0.0.35, < 0.1.0
ovos_workshop >=0.0.12, < 0.1.0
ovos_audio_plugin_simple>=0.0.2a3, < 0.1.0
# TODO: Stable audio plugin
ovos-ocp-files-plugin~=0.13
NeonDaniel marked this conversation as resolved.
Show resolved Hide resolved
padacioso~=0.2, >=0.1.1
dbus-next
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ def required(requirements_file):
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]


def get_description():
with open(os.path.join(BASEDIR, "README.md"), "r") as f:
long_description = f.read()
return long_description


PLUGIN_ENTRY_POINT = 'ovos_common_play=ovos_plugin_common_play'
PLUGIN_CONFIG_ENTRY_POINT = 'ovos_common_play.config=ovos_plugin_common_play:OCPPluginConfig'

Expand All @@ -57,6 +64,8 @@ def required(requirements_file):
name='ovos_plugin_common_play',
version=get_version(),
description='OVOS common play audio service adapter plugin',
long_description=get_description(),
long_description_content_type="text/markdown",
url='https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin',
author='JarbasAi',
author_email='[email protected]',
Expand Down
Loading