skill-ovos-fallback-kagi/setup.py

66 lines
2.5 KiB
Python
Raw Normal View History

2025-04-02 13:47:46 -05:00
#!/usr/bin/env python3
from setuptools import setup
2025-04-02 14:09:30 -05:00
import os
from os import walk, path
2025-04-02 13:47:46 -05:00
2025-04-02 14:09:30 -05:00
PYPI_NAME = "skill-ovos-fallback-kagi" # pip install PYPI_NAME
2025-04-03 09:28:15 -05:00
VERSION = "0.1.10"
2025-04-02 14:09:30 -05:00
URL = f"https://code.sitosis.com/rudism/{PYPI_NAME}"
SKILL_CLAZZ = "KagiSkill" # needs to match __init__.py class name
2025-04-02 13:47:46 -05:00
2025-04-02 14:09:30 -05:00
# below derived from github url to ensure standard skill_id
SKILL_AUTHOR, SKILL_NAME = URL.split(".com/")[-1].split("/")
SKILL_PKG = SKILL_NAME.lower().replace('-', '_')
PLUGIN_ENTRY_POINT = f'{SKILL_NAME.lower()}.{SKILL_AUTHOR.lower()}={SKILL_PKG}:{SKILL_CLAZZ}'
# skill_id=package_name:SkillClass
2025-04-02 13:47:46 -05:00
# Function to parse requirements from file
def get_requirements(requirements_filename: str = "requirements.txt"):
2025-04-02 14:14:13 -05:00
requirements_file = path.join(path.abspath(path.dirname(__file__)), requirements_filename)
if path.isfile(requirements_file):
2025-04-02 13:47:46 -05:00
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():
2025-04-02 13:51:10 -05:00
resource_base_dirs = ("locale", "ui", "vocab", "dialog", "regex", "skill")
2025-04-02 14:09:30 -05:00
base_dir = path.dirname(__file__)
2025-04-02 13:47:46 -05:00
package_data = ["*.json"]
for res in resource_base_dirs:
2025-04-02 14:09:30 -05:00
if path.isdir(path.join(base_dir, res)):
for (directory, _, files) in walk(path.join(base_dir, res)):
2025-04-02 13:47:46 -05:00
if files:
2025-04-02 14:09:30 -05:00
package_data.append(
path.join(directory.replace(base_dir, "").lstrip('/'),
'*'))
2025-04-02 13:47:46 -05:00
return package_data
2025-04-02 14:11:28 -05:00
with open(path.join(path.abspath(path.dirname(__file__)), "README.md"), "r") as f:
long_description = f.read()
2025-04-02 13:47:46 -05:00
# Setup configuration
setup(
name=PYPI_NAME,
2025-04-02 14:10:27 -05:00
version=VERSION,
2025-04-02 14:09:30 -05:00
description='ovos Kagi skill',
long_description=long_description,
long_description_content_type="text/markdown",
2025-04-02 13:47:46 -05:00
url=URL,
2025-04-02 14:09:30 -05:00
author='Rudis Muiznieks',
author_email='rudis@sitosis.com',
license='Apache-2.0',
2025-04-02 13:47:46 -05:00
package_dir={SKILL_PKG: ""},
package_data={SKILL_PKG: find_resource_files()},
packages=[SKILL_PKG],
include_package_data=True,
install_requires=get_requirements(),
keywords='ovos skill plugin',
entry_points={'ovos.plugin.skill': PLUGIN_ENTRY_POINT}
)