-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 1.02 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
30
#!/usr/bin/env python3
from os.path import join, abspath, dirname
from setuptools import setup
with open(join(dirname(abspath(__file__)), 'requirements.txt')) as f:
requirements = f.readlines()
PLUGIN_ENTRY_POINT = 'pico2wave = mycroft_tts_plugin_pico2wave:Pico2WaveTTSPlugin'
setup(
name='mycroft_tts_plugin_pico2wave',
version='0.2',
description='A tts plugin for mycroft, using pico2wave',
url='http://github.com/dalgwen/mycroft-tts-plugin-pico2wave',
author='Gwendal Roulleau',
author_email='[email protected]',
license='Apache-2.0',
packages=['mycroft_tts_plugin_pico2wave'],
install_requires=requirements,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
],
keywords='mycroft plugin tts',
entry_points={'mycroft.plugin.tts': PLUGIN_ENTRY_POINT}
)