Skip to content

Commit

Permalink
Use the debian version of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
davesteele committed Feb 10, 2024
1 parent ae25004 commit e9261b5
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
Expand All @@ -47,18 +47,17 @@
},
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",
"web/templates/confirm.html",
],
),
(
"/usr/share/comitup/web/templates/css",
"/web/templates/css",
[
"web/templates/css/uikit.css",
"web/templates/css/uikit-rtl.css",
Expand All @@ -67,22 +66,22 @@
],
),
(
"/usr/share/comitup/web/templates/js",
"/web/templates/js",
[
"web/templates/js/uikit",
"web/templates/js/uikit-icons",
"web/templates/js/blink.js",
],
),
(
"/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",
Expand All @@ -92,7 +91,6 @@
install_requires=[
"cachetools",
"jinja2",
"dbus-python",
"pygobject",
"flask",
"python-networkmanager",
Expand Down

0 comments on commit e9261b5

Please sign in to comment.