-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
42 lines (40 loc) · 1.26 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
41
42
#!/usr/bin/python2
from distutils.core import setup
setup(name='netgui',
version='0.85',
description = "More advanced GUI for NetCTL. Replaces WiFiz.",
author = "Cody Dostal <[email protected]>, Gregory Mullen <[email protected]>",
url = "https://github.com/codywd/netgui",
license = "Custom MIT (see NetGUI.license)",
py_modules=['main'],
#'runner' is in the root.
scripts = ['scripts/netgui'],
data_files=[
('/usr/share/netgui/',
['main.py',
'UI.glade']),
('/usr/share/licenses/netgui',
['NetGUI.license']),
('/usr/share/netgui/imgs',
['imgs/APScan.png',
'imgs/connect.png',
'imgs/exit.png',
'imgs/newprofile.png',
'imgs/aboutLogo.png',
'imgs/disconnect.png',
'imgs/logo.png',
'imgs/preferences.png']),
('/usr/share/netgui/Library',
['Library/__init__.py',
'Library/generate_config.py',
'Library/interface_control.py',
'Library/netctl_functions.py',
'Library/notifications.py',
'Library/preferences.py',
'Library/profile_editor.py',
'Library/run_as_root.py',
'Library/scanning.py']),
('/usr/share/applications',
['scripts/netgui.desktop'])
]
)