From cf6e693773101b5ac6aea7a4186e7e15ce4508d5 Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sat, 6 Sep 2025 15:42:27 -0700 Subject: move all the Kaylee code into a subdirectory this is preparation for merging it into the Pollyana repo Force-Push: yes Change-Id: I155624ba39a0d212c999f38aaf2de2cd62b7aa49 --- src/setup.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 src/setup.py (limited to 'src/setup.py') diff --git a/src/setup.py b/src/setup.py new file mode 100644 index 0000000..34ba60c --- /dev/null +++ b/src/setup.py @@ -0,0 +1,39 @@ +from setuptools import setup + +with open("README.rst") as file: + long_description = file.read() + +setup( + name = "KayleeVC", + version = "0.1.1", + author = "Clayton G. Hobbs", + author_email = "clay@lakeserv.net", + description = ("Somewhat fancy voice command recognition software"), + license = "GPLv3+", + keywords = "voice speech command control", + url = "https://github.com/Ratfink/kaylee", + packages = ['kayleevc'], + long_description = long_description, + classifiers = [ + "Development Status :: 3 - Alpha", + "Environment :: X11 Applications :: GTK", + "Intended Audience :: End Users/Desktop", + "License :: OSI Approved :: GNU General Public License v3 or later " + "(GPLv3+)", + "Operating System :: POSIX :: Linux", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.5", + "Topic :: Home Automation" + ], + install_requires=["requests"], + data_files = [ + ("/usr/share/kaylee", ["data/icon_inactive.png", "data/icon.png", + "options.json.tmp"]), + ("/usr/lib/systemd/user", ["systemd/kaylee.service"]) + ], + entry_points = { + "console_scripts": [ + "kaylee=kayleevc.kaylee:run" + ] + } +) -- cgit 1.4.1