File: setup.py

package info (click to toggle)
lio-utils 3.1%2Bgit2.fd0b34fd-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 992 kB
  • sloc: ansic: 7,031; python: 3,039; perl: 885; sh: 414; makefile: 118
file content (19 lines) | stat: -rwxr-xr-x 475 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

from distutils.core import setup

long_desc="""Python CLI for controlling the LIO-Target/ConfigFS fabric module
"""

setup(name='lio',
      version='4.1',
      description='CLI for controlling LIO-Target/ConfigFS',
      long_description=long_desc,
      author='Nicholas A. Bellinger',
      author_email='nab@linux-iscsi.org',
      url='http://linux-iscsi.org',
      license='GPL',
      requires=['tcm'],
      py_modules=['lio_dump','lio_node']
)