-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (19 loc) · 909 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(name='SSHClient',
version='1.0.1',
description='Manage SSH Connections via GUI',
author='Vitor Villar',
author_email='vitor.luis98@gmail.com',
url='http://vitorluis.github.io/SSHClient/',
packages=['collection', 'data', 'events', 'model', 'tools', 'windows', 'ui'],
package_data={
'data': ['data/sshclient.db'],
'ui': ['ui/about_window.glade', 'ui/connection_window.glade', 'ui/delete_connection_window.glade',
'ui/file_export_dialog.glade', 'ui/main_window.glade', 'ui/message_box.glade',
'ui/new_tunnel_window.glade', 'ui/settings_window.glade']
},
data_files=[('bitmaps', ['ui/images/delete.png', 'ui/images/edit.png',
'ui/images/new.png', 'ui/images/ssh.png'])],
requires=['Crypto', 'gi']
)