Here we print a string, not bytes.
[iotop.git] / setup.py
blob17e825ef7b829c188559dc7f4e030a5041074ebf
1 #!/usr/bin/env python
3 from distutils.core import setup
4 from iotop.version import VERSION
6 setup(name='iotop',
7 version=VERSION,
8 description='Per process I/O bandwidth monitor',
9 long_description=
10 '''Iotop is a Python program with a top like UI used to show of behalf of which
11 process is the I/O going on.''',
12 author='Guillaume Chazarain',
13 author_email='guichaz@gmail.com',
14 url='http://guichaz.free.fr/iotop',
15 scripts=['bin/iotop'],
16 data_files=[('share/man/man1', ['iotop.1'])],
17 packages=['iotop'],
18 license='GPL'