From e9261b5f5eec9f9bcd326f6d4b36df49c3b768d0 Mon Sep 17 00:00:00 2001 From: David Steele Date: Fri, 9 Feb 2024 21:14:54 -0500 Subject: [PATCH] Use the debian version of setup.py --- setup.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index ddec5f1..4264d24 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ ], entry_points={ "console_scripts": [ - "comitup=comitup.comitup:main", + "comitup-cmd=comitup.comitup:main", "comitup-cli=cli.comitupcli:main", "comitup-web=web.comitupweb:main", ], @@ -47,10 +47,9 @@ }, data_files=[ ("/etc", ["conf/comitup.conf"]), - ("/var/lib/comitup", ["conf/comitup.json"]), ("/usr/share/dbus-1/system.d", ["conf/comitup-dbus.conf"]), ( - "/usr/share/comitup/web/templates", + "/web/templates", [ "web/templates/index.html", "web/templates/connect.html", @@ -58,7 +57,7 @@ ], ), ( - "/usr/share/comitup/web/templates/css", + "/web/templates/css", [ "web/templates/css/uikit.css", "web/templates/css/uikit-rtl.css", @@ -67,7 +66,7 @@ ], ), ( - "/usr/share/comitup/web/templates/js", + "/web/templates/js", [ "web/templates/js/uikit", "web/templates/js/uikit-icons", @@ -75,14 +74,14 @@ ], ), ( - "/usr/share/comitup/web/templates/images", + "/web/templates/images", [ "web/templates/images/ledon.gif", "web/templates/images/ledoff.gif", ], ), ( - "/usr/share/comitup/dns", + "/dns", [ "conf/dns-hotspot.conf", "conf/dns-connected.conf", @@ -92,7 +91,6 @@ install_requires=[ "cachetools", "jinja2", - "dbus-python", "pygobject", "flask", "python-networkmanager",