Skip to content

Commit

Permalink
bump OPM
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Jan 8, 2024
1 parent 9e0a53e commit 9030c2c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion ovos_plugin_mplayer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from py_mplayer import MplayerCtrl


class OVOSmplayerService(AudioPlayerBackend):
class MplayerOCPAudioService(AudioPlayerBackend):
def __init__(self, config, bus=None):
super().__init__(config, bus)
self.config = config
Expand Down
6 changes: 3 additions & 3 deletions ovos_plugin_mplayer/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# The following lines are replaced during the release process.
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 0
VERSION_BUILD = 1
VERSION_ALPHA = 0
VERSION_MINOR = 1
VERSION_BUILD = 0
VERSION_ALPHA = 1
# END_VERSION_BLOCK
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,19 @@ def required(requirements_file):
if pkg.strip() and not pkg.startswith("#")]


PLUGIN_ENTRY_POINT = 'ovos_mplayer=ovos_plugin_mplayer'
PLUGIN_CONFIG_ENTRY_POINT = 'ovos_mplayer.config=ovos_plugin_mplayer:mplayerAudioPluginConfig'
PLUGIN_ENTRY_POINT = 'ovos-media-audio-plugin-mplayer=ovos_plugin_mplayer.MplayerOCPAudioService'

setup(
name='ovos_plugin_mplayer',
name='ovos-media-plugin-mplayer',
version=get_version(),
description='mplayer plugin for ovos',
url='https://github.com/OpenVoiceOS/ovos-mplayer-plugin',
url='https://github.com/OpenVoiceOS/ovos-media-plugin-mplayer',
author='JarbasAi',
author_email='[email protected]',
license='Apache-2.0',
packages=['ovos_plugin_mplayer'],
install_requires=required("requirements/requirements.txt"),
package_data={'': package_files('ovos_plugin_mplayer')},
keywords='ovos audio plugin',
entry_points={'mycroft.plugin.audioservice': PLUGIN_ENTRY_POINT,
'mycroft.plugin.audioservice.config': PLUGIN_CONFIG_ENTRY_POINT}
keywords='ovos audio video OCP plugin',
entry_points={'opm.media.audio': PLUGIN_ENTRY_POINT}
)

0 comments on commit 9030c2c

Please sign in to comment.