forked from city41/mate-i3-applet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·40 lines (31 loc) · 1.03 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
#* a simple i3 workspace applet for MATE Desktop
#* Copyright (c) 2017 Matt Greer <[email protected]>
#* see README for more information
from distutils.core import setup
from distutils.command.install_data import install_data
class InstallData(install_data):
def run(self):
install_data.run(self)
setup(
name="mate-i3-applet",
version="2.1.0",
description="MATE i3 Workspace Applet",
long_description="Applet for MATE Panel showing i3 workspaces and mode.",
license="BSD",
url="https://github.com/city41/mate-i3-applet",
author="Matt Greer",
author_email="[email protected]",
data_files=[
('/usr/lib/mate-i3-applet', [
'matei3applet.py',
'log.py',
'i3conn.py',
'i3ipc.py',
'mate_version.py',
]),
('/usr/share/dbus-1/services', ['matei3applet.service']),
('/usr/share/mate-panel/applets', ['matei3applet.mate-panel-applet']),
],
cmdclass={'install_data': InstallData}
)