forked from OpenVoiceOS/ovos-audio-transformer-plugin-ggwave
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·91 lines (78 loc) · 3.13 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/usr/bin/env python3
import os
from os import walk
from os.path import abspath, dirname, join, isfile, isdir
from setuptools import setup
# Define package information
SKILL_CLAZZ = "GGWaveSkill" # Make sure it matches __init__.py class name
URL = "https://github.com/OpenVoiceOS/ovos-skill-ggwave"
AUTHOR = "OpenVoiceOS"
EMAIL = "[email protected]"
LICENSE = "Apache2.0"
DESCRIPTION = "voice interface for ggwave plugin"
PYPI_NAME = URL.split("/")[-1] # pip install PYPI_NAME
# Construct entry point for plugin
SKILL_ID = f"{PYPI_NAME.lower()}.{AUTHOR.lower()}"
SKILL_PKG = PYPI_NAME.lower().replace('-', '_')
PLUGIN_ENTRY_POINT = f"{SKILL_ID}={SKILL_PKG}:{SKILL_CLAZZ}"
# Function to parse requirements from file
def get_requirements(requirements_filename: str = "requirements.txt"):
requirements_file = join(abspath(dirname(__file__)), requirements_filename)
if isfile(requirements_file):
with open(requirements_file, 'r', encoding='utf-8') as r:
requirements = r.readlines()
requirements = [r.strip() for r in requirements if r.strip() and not r.strip().startswith("#")]
if 'MYCROFT_LOOSE_REQUIREMENTS' in os.environ:
print('USING LOOSE REQUIREMENTS!')
requirements = [r.replace('==', '>=').replace('~=', '>=') for r in requirements]
return requirements
return []
# Function to find resource files
def find_resource_files():
resource_base_dirs = ("locale", "ui", "vocab", "dialog", "regex", "res")
base_dir = abspath(dirname(__file__))
package_data = ["*.json"]
for res in resource_base_dirs:
if isdir(join(base_dir, res)):
for (directory, _, files) in walk(join(base_dir, res)):
if files:
package_data.append(join(directory.replace(base_dir, "").lstrip('/'), '*'))
return package_data
def get_version():
""" Find the version of this skill"""
version_file = os.path.join(os.path.dirname(__file__), '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 int(alpha):
version += f"a{alpha}"
return version
# Setup configuration
setup(
name=PYPI_NAME,
version=get_version(),
description=DESCRIPTION,
url=URL,
author=AUTHOR,
author_email=EMAIL,
license=LICENSE,
package_dir={SKILL_PKG: ""},
package_data={SKILL_PKG: find_resource_files()},
packages=[SKILL_PKG],
include_package_data=True,
install_requires=get_requirements("requirements.txt"),
keywords='ovos skill plugin',
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)