forked from SolusOS-discontinued/ssc
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
23 lines (21 loc) · 1.33 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name = "solus-sc",
version = "20.0",
author = "Ikey Doherty",
author_email = "[email protected]",
description = ("Solus Software Centre"),
license = "GPL-2.0",
url = "https://github.com/solus-project/os-installer",
packages = ['solus_sc', 'eopkg_assist', 'solus_update'],
scripts = ['solus-sc', 'solus-update-checker'],
classifiers = [ "License :: OSI Approved :: GPL-2.0 License"],
package_data = {'solus_sc': ['data/update_dialog.ui', 'data/styling.css', 'data/arc.css', 'data/settings.ui']},
data_files = [("/usr/share/applications", ["data/solus-sc.desktop"]),
("/usr/share/dbus-1/system-services", ["data/dbus-1/system-services/com.solus_project.eopkgassist.service"]),
("/etc/dbus-1/system.d", ["data/system.d/com.solus_project.eopkgassist.conf"]),
("/usr/share/polkit-1/actions", ["data/polkit-1/actions/com.solus_project.eopkgassist.policy"]),
("/usr/share/glib-2.0/schemas", ["data/com.solus-project.software-center.gschema.xml"]),
("/usr/share/xdg/autostart", ["data/solus-update.desktop"]),
("/usr/libexec", ["eopkg-assist-wrapper"])]
)