Skip to content
This repository has been archived by the owner on Feb 5, 2024. It is now read-only.

Commit

Permalink
feat/sample_configs (#8)
Browse files Browse the repository at this point in the history
add sample configs. companion to OpenVoiceOS/ovos-plugin-manager#71

Co-authored-by: jarbasai <[email protected]>
  • Loading branch information
NeonJarbas and JarbasAl authored Jul 29, 2022
1 parent 730ef62 commit 350f15f
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 299 deletions.
243 changes: 0 additions & 243 deletions build/lib/ovos_tts_plugin_mimic2/__init__.py

This file was deleted.

7 changes: 0 additions & 7 deletions build/lib/ovos_tts_plugin_mimic2/version.py

This file was deleted.

Binary file removed dist/ovos_tts_plugin_mimic2-0.1.4-py3-none-any.whl
Binary file not shown.
Binary file removed dist/ovos_tts_plugin_mimic2-0.1.5-py3-none-any.whl
Binary file not shown.
25 changes: 0 additions & 25 deletions ovos_tts_plugin_mimic2.egg-info/PKG-INFO

This file was deleted.

14 changes: 0 additions & 14 deletions ovos_tts_plugin_mimic2.egg-info/SOURCES.txt

This file was deleted.

1 change: 0 additions & 1 deletion ovos_tts_plugin_mimic2.egg-info/dependency_links.txt

This file was deleted.

3 changes: 0 additions & 3 deletions ovos_tts_plugin_mimic2.egg-info/entry_points.txt

This file was deleted.

3 changes: 0 additions & 3 deletions ovos_tts_plugin_mimic2.egg-info/requires.txt

This file was deleted.

1 change: 0 additions & 1 deletion ovos_tts_plugin_mimic2.egg-info/top_level.txt

This file was deleted.

1 change: 0 additions & 1 deletion ovos_tts_plugin_mimic2.egg-info/zip-safe

This file was deleted.

9 changes: 9 additions & 0 deletions ovos_tts_plugin_mimic2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,12 @@ def validate_connection(self):

def get_tts_class(self):
return Mimic2TTSPlugin


Mimic2TTSPluginConfig = {
"en-us": [
{"voice": "kusal", "gender": "male"},
{"voice": "nancy", "gender": "female"},
{"voice": "ljspeech", "gender": "female"}
]
}
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ def required(requirements_file):

PLUGIN_ENTRY_POINT = 'ovos-tts-plugin-mimic2 = ' \
'ovos_tts_plugin_mimic2:Mimic2TTSPlugin'
SAMPLE_CONFIGS = 'ovos-tts-plugin-mimic2.config = ' \
'ovos_tts_plugin_mimic2:Mimic2TTSPluginConfig'


setup(
name='ovos-tts-plugin-mimic2',
version=get_version(),
Expand Down Expand Up @@ -81,5 +85,6 @@ def required(requirements_file):
'Programming Language :: Python :: 3.6',
],
keywords='mycroft ovos plugin tts',
entry_points={'mycroft.plugin.tts': PLUGIN_ENTRY_POINT}
entry_points={'mycroft.plugin.tts': PLUGIN_ENTRY_POINT,
'mycroft.plugin.tts.config': SAMPLE_CONFIGS}
)

0 comments on commit 350f15f

Please sign in to comment.