added version

This commit is contained in:
Rudis Muiznieks 2025-04-02 14:10:27 -05:00
parent 08a4c41caa
commit 6aedc5a275
Signed by: rudism
GPG key ID: CABF2F86EF7884F9

View file

@ -4,6 +4,7 @@ import os
from os import walk, path
PYPI_NAME = "skill-ovos-fallback-kagi" # pip install PYPI_NAME
VERSION = "0.0.1"
URL = f"https://code.sitosis.com/rudism/{PYPI_NAME}"
SKILL_CLAZZ = "KagiSkill" # needs to match __init__.py class name
@ -43,7 +44,7 @@ def find_resource_files():
# Setup configuration
setup(
name=PYPI_NAME,
version=get_version(),
version=VERSION,
description='ovos Kagi skill',
long_description=long_description,
long_description_content_type="text/markdown",