summary refs log tree commit diff
path: root/src/setup.py
diff options
context:
space:
mode:
authorIrene Knapp <ireneista@irenes.space>2025-09-06 16:22:50 -0700
committerIrene Knapp <ireneista@irenes.space>2025-09-06 16:22:50 -0700
commit63ed2e5a680b6e0e352721a8238e2918cb3e70ff (patch)
tree3f3d679b82109c6101ecc14ff153e12516dd786a /src/setup.py
parent18e38018cf4cc8f9689c453f5013426e60bf744a (diff)
the vanity commit (change kaylee to pollyana everywhere)
except the copyright notices, those need more care and attention

Force-Push: yes
Change-Id: Ibddfb1b7a0edbb0d4adb6cfaf0ac4239537ade2f
Diffstat (limited to 'src/setup.py')
-rw-r--r--src/setup.py20
1 files changed, 10 insertions, 10 deletions
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"
         ]
     }
 )