summary refs log tree commit diff
path: root/src/setup.py
diff options
context:
space:
mode:
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"
         ]
     }
 )