-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
17 lines (15 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Drobo Utils Copyright (C) 2008,2009 Peter Silva (Peter.A.Silva@gmail.com)
# 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.rst']),
('share/drobo-utils-doc', ['DEVELOPERS.rst']),
('share/drobo-utils-doc', ['drobom.8.rst']),
('share/drobo-utils-doc', ['droboview.8.rst']),
('share/drobo-utils-doc', ['CHANGES.rst'])])