-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·69 lines (60 loc) · 2.5 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env python3
import os
from setuptools import setup
PLUGIN_ENTRY_POINT = 'ovos-stt-plugin-chromium = ovos_stt_plugin_chromium:ChromiumSTT'
CONFIG_ENTRY_POINT = 'ovos-stt-plugin-chromium.config = ovos_stt_plugin_chromium:ChromiumSTTConfig'
BASEDIR = os.path.abspath(os.path.dirname(__file__))
def get_version():
""" Find the version of the package"""
version_file = f'{BASEDIR}/ovos_stt_plugin_chromium/version.py'
major, minor, build, alpha = (None, None, None, None)
with open(version_file) as f:
for line in f:
if 'VERSION_MAJOR' in line:
major = line.split('=')[1].strip()
elif 'VERSION_MINOR' in line:
minor = line.split('=')[1].strip()
elif 'VERSION_BUILD' in line:
build = line.split('=')[1].strip()
elif 'VERSION_ALPHA' in line:
alpha = line.split('=')[1].strip()
if ((major and minor and build and alpha) or
'# END_VERSION_BLOCK' in line):
break
version = f"{major}.{minor}.{build}"
if alpha and int(alpha) > 0:
version += f"a{alpha}"
return version
setup(
name='ovos-stt-plugin-chromium',
version=get_version(),
description='A stt plugin for OVOS using the google chrome browser api',
url='https://github.com/OpenVoiceOS/ovos-stt-plugin-chromium',
author='JarbasAi',
author_email='[email protected]',
license='Apache-2.0',
packages=['ovos_stt_plugin_chromium'],
install_requires=["requests",
"ovos_utils>=0.0.12",
"ovos-plugin-manager>=0.0.1"],
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='mycroft ovos plugin stt',
entry_points={'mycroft.plugin.stt': PLUGIN_ENTRY_POINT,
'mycroft.plugin.stt.config': CONFIG_ENTRY_POINT}
)