forked from OpenVoiceOS/ovos-utterance-plugin-cancel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·99 lines (82 loc) · 3.25 KB
/
setup.py
File metadata and controls
executable file
·99 lines (82 loc) · 3.25 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python3
import os
from setuptools import setup
# parse the repo name from the git repository
URL = "https://github.com/OpenVoiceOS/ovos-utterance-plugin-cancel"
PLUGIN_CLAZZ = "NevermindPlugin"
AUTHOR, REPO = URL.split(".com/")[-1].split("/")
ADDITIONAL_AUTHORS = ["jarbasai"]
AUTHORS = ADDITIONAL_AUTHORS + [AUTHOR]
PKG = "ovos_utterance_plugin_cancel"
BASEDIR = os.path.abspath(os.path.dirname(__file__))
PKGDIR = os.path.join(BASEDIR, PKG)
UTTERANCE_ENTRY_POINT = f'{REPO.lower()}={PKG}:{PLUGIN_CLAZZ}'
def get_version():
""" Find the version of the package"""
version_file = f'{BASEDIR}/ovos_utterance_plugin_cancel/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
def find_resource_files():
resource_base_dirs = ("locale", "res",) # Removed "ui"
package_data = list()
for res in resource_base_dirs:
if os.path.isdir(os.path.join(PKGDIR, res)):
for directory, _, files in os.walk(os.path.join(PKGDIR, res)):
for f in files:
path = os.path.relpath(os.path.join(directory, f), PKGDIR)
package_data.append(path)
return package_data
def required(requirements_file):
""" Read requirements file and remove comments and empty lines. """
with open(os.path.join(BASEDIR, requirements_file), 'r') as f:
requirements = f.read().splitlines()
if 'MYCROFT_LOOSE_REQUIREMENTS' in os.environ:
print('USING LOOSE REQUIREMENTS!')
requirements = [r.replace('==', '>=').replace('~=', '>=') for r in requirements]
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]
with open(os.path.join(BASEDIR, "README.md"), "r") as f:
long_description = f.read()
setup(
name=REPO,
description='OpenVoiceOS Utterance Cancel Plugin',
long_description=long_description,
version=get_version(),
author=AUTHOR,
author_email='jarbasai@mailfence.com',
url=URL,
license='apache-2.0',
packages=[PKG],
package_data={PKG: find_resource_files()},
install_requires=required("requirements.txt"),
include_package_data=True,
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={
'neon.plugin.text': UTTERANCE_ENTRY_POINT
}
)