diff options
author | Irene Knapp <ireneista@irenes.space> | 2025-09-06 15:42:27 -0700 |
---|---|---|
committer | Irene Knapp <ireneista@irenes.space> | 2025-09-06 15:42:27 -0700 |
commit | cf6e693773101b5ac6aea7a4186e7e15ce4508d5 (patch) | |
tree | 139914c41bc17e7e5df132f5b3f2672b68394afd /src/setup.py | |
parent | baeb0e1fa08fb6b21e4a22458de16b4948d1f2d0 (diff) |
move all the Kaylee code into a subdirectory
this is preparation for merging it into the Pollyana repo Force-Push: yes Change-Id: I155624ba39a0d212c999f38aaf2de2cd62b7aa49
Diffstat (limited to 'src/setup.py')
-rw-r--r-- | src/setup.py | 39 |
1 files changed, 39 insertions, 0 deletions
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" + ] + } +) |