forked from tvladyslav/py3_sg
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·24 lines (21 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python3
from distutils.core import setup, Extension
setup(name = "py_sg",
version = "0.13",
ext_modules=[
Extension("py_sg", ["py_sg.c"])
],
description = 'Python SCSI generic library',
long_description =
'''This is a small Python extension which sends arbitrary commands to SCSI devices, via the Linux SCSI Generic driver, which provides the SG_IO ioctl for this purpose.
Basically, the module includes three methods to read and write, which
allow you to issue commands to SCSI devices and read and write
accompanying data. If an OS error occurs, the OSError exception will
be raised, while if a SCSI error occurs, the py_sg.SCSIError exception
will be raised.''',
author = 'Dan Lenski',
author_email = '[email protected]',
url = 'http://tonquil.homeip.net/~dlenski/py_sg',
license = 'GPLv3',
classifiers = ['Topic :: System :: Hardware'],
)