-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python3
from setuptools import setup
PLUGIN_ENTRY_POINT = 'ovos-tts-plugin-beepspeak = ovos_tts_plugin_beepspeak:BeepSpeak'
SAMPLE_CONFIGS = 'ovos-tts-plugin-beepspeak.config = ovos_tts_plugin_beepspeak:BeepSpeakTTSPluginConfig'
setup(
name='ovos-tts-plugin-beepspeak',
version='0.0.1',
description='droid tts plugin for OpenVoiceOS/Mycroft/Chatterbox/Neon',
url='',
author='JarbasAi',
author_email='[email protected]',
license='Apache-2.0',
packages=['ovos_tts_plugin_beepspeak'],
install_requires=["requests", 'ovos-plugin-manager>=0.0.1a4'],
zip_safe=True,
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
],
keywords='OpenVoiceOS mycroft chatterbox ovos plugin tts',
entry_points={'mycroft.plugin.tts': PLUGIN_ENTRY_POINT,
'mycroft.plugin.tts.config': SAMPLE_CONFIGS}
)