File: setup.py

package info (click to toggle)
drobo-utils 0.6.1%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,000 kB
  • ctags: 172
  • sloc: python: 1,705; sh: 229; makefile: 65
file content (22 lines) | stat: -rw-r--r-- 978 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 = '0.6.1',
       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'])
                    ]

      )