-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·38 lines (28 loc) · 958 Bytes
/
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
#!/usr/bin/env python
#* part of battery-status project
#* battery-status - applet/indicator with battery information
#* Copyright (c) 2010 Ivan Zorin <ivan.a.zorin@gmail.com>
#* see README for more information
"""applet/indicator with battery status for the GNOME panel""";
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 = "battery-status",
version = "0.1.1",
maintainer = "Ivan Zorin",
maintainer_email = "ivan.a.zorin@gmail.com",
description = "battery status",
license = "GNU GPL v3",
scripts = [],
url = "http://live.gnome.org/BatteryApplet",
package_dir = {},
packages = [],
data_files=[('/usr/lib/battery-status', ['battery-status']),
('/usr/lib/bonobo/servers', ['Battery_Applet.server']),
('/usr/share/gconf/schemas', ['battery-status.schemas']),
],
cmdclass={'install_data': InstallData}
)