From 63ed2e5a680b6e0e352721a8238e2918cb3e70ff Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Sat, 6 Sep 2025 16:22:50 -0700 Subject: the vanity commit (change kaylee to pollyana everywhere) except the copyright notices, those need more care and attention Force-Push: yes Change-Id: Ibddfb1b7a0edbb0d4adb6cfaf0ac4239537ade2f --- src/setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src/setup.py') diff --git a/src/setup.py b/src/setup.py index b4c32c8..347e5cf 100644 --- a/src/setup.py +++ b/src/setup.py @@ -4,15 +4,15 @@ 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"), + name = "Pollyanna", + version = "0.1", + author = "Irene Knapp", + author_email = "ireneista@irenes.space", + description = ("Linux voice input experiments, with code from KayleeVC"), license = "GPLv3+", keywords = "voice speech command control", - url = "https://github.com/Ratfink/kaylee", - packages = ['kayleevc'], + url = "https://code.irenes.space/pollyanna/", + packages = ['pollyanna'], long_description = long_description, classifiers = [ "Development Status :: 3 - Alpha", @@ -27,15 +27,15 @@ setup( ], install_requires=["requests"], data_files = [ - ("/usr/share/kaylee", + ("/usr/share/pollyanna", ["data/icon.png", "data/icon_small.png", "data/icon_inactive.png", "data/icon_inactive_small.png", "options.json.tmp"]), - ("/usr/lib/systemd/user", ["systemd/kaylee.service"]) + ("/usr/lib/systemd/user", ["systemd/pollyanna.service"]) ], entry_points = { "console_scripts": [ - "kaylee=kayleevc.kaylee:run" + "pollyanna=pollyanna.pollyanna:run" ] } ) -- cgit 1.4.1