-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
22 lines (18 loc) · 977 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Drobo Utils Copyright (C) 2008,2009 Peter Silva ([email protected])
# Drobo Utils comes with ABSOLUTELY NO WARRANTY; For details type see the file
# named COPYING in the root of the source directory tree.
from distutils.core import setup
setup (name = 'Drobo-utils',
version = '9999',
description = 'Drobo Management Protocol io package',
py_modules=['Drobo','DroboGUI', 'DroboIOctl' ],
scripts=['drobom', 'droboview'],
data_files = [
('share/pixmaps', ['Drobo-Front-0000.gif']),
('share/drobo-utils-doc', ['README.html']),
('share/drobo-utils-doc', ['DEVELOPERS.html']),
('share/drobo-utils-doc', ['drobom.html']),
('share/drobo-utils-doc', ['droboview.html']),
('share/drobo-utils-doc', ['CHANGES.html'])
]
)