-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
87 lines (75 loc) · 2.98 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
#!/usr/bin/env python3
from os import walk, path
from setuptools import setup
BASEDIR = path.abspath(path.dirname(__file__))
URL = "https://github.com/smartgic/skill-sonos-controller"
SKILL_CLAZZ = "SonosControllerSkill"
PYPI_NAME = "skill-sonos-controller"
SKILL_AUTHOR, SKILL_NAME = URL.split(".com/", maxsplit=1)[-1].split("/")
SKILL_PKG = SKILL_NAME.lower().replace("-", "_")
PLUGIN_ENTRY_POINT = (
f"{SKILL_NAME.lower()}.{SKILL_AUTHOR.lower()}={SKILL_PKG}:{SKILL_CLAZZ}"
)
BASE_PATH = BASE_PATH = path.abspath(
path.join(path.dirname(__file__), "skill_sonos_controller")
)
def get_version():
"""Find the version of the package"""
version = None
version_file = path.join(BASE_PATH, "version.py")
major, minor, build, alpha = (None, None, None, None)
with open(version_file, encoding="utf-8") as file_version:
for line in file_version:
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 get_requirements(requirements_filename: str):
requirements_file = path.join(path.dirname(__file__), requirements_filename)
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("#")
]
return requirements
def find_resource_files():
resource_base_dirs = ("locale", "intents", "dialog", "vocab", "regex", "ui")
package_data = ["*.json", "*.wav", "*.mp3"]
for res in resource_base_dirs:
if path.isdir(path.join(BASE_PATH, res)):
for directory, _, files in walk(path.join(BASE_PATH, res)):
if files:
package_data.append(
path.join(directory.replace(BASE_PATH, "").lstrip("/"), "*")
)
return package_data
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name=PYPI_NAME,
version=get_version(),
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url=URL,
author="Gaëtan Trellu",
author_email="[email protected]",
license="MIT",
package_dir={SKILL_PKG: "skill_sonos_controller"},
package_data={SKILL_PKG: find_resource_files()},
packages=[SKILL_PKG],
include_package_data=True,
install_requires=get_requirements("requirements.txt"),
keywords="ovos skill voice assistant",
entry_points={"ovos.plugin.skill": PLUGIN_ENTRY_POINT},
)