Clarify -p help text, and cosmetically add a terminating '.'.
[iotop.git] / setup.py
blob9f1c747e5334316c40a4b3e70edf1bae8ea4e133
1 #!/usr/bin/env python
3 import sys
5 sys.path.insert(0, 'setuptools-0.6c6-py2.4.egg')
6 from setuptools import setup, find_packages
7 from iotop.version import VERSION
9 setup(name='iotop',
10 version=VERSION,
11 description='Per process I/O bandwidth monitor',
12 long_description=
13 '''Iotop is a Python program with a top like UI used to show of behalf of which
14 process is the I/O going on.''',
15 author='Guillaume Chazarain',
16 author_email='guichaz@gmail.com',
17 url='http://guichaz.free.fr/iotop',
18 scripts=['bin/iotop'],
19 data_files=[('share/man/man1', ['iotop.1'])],
20 packages=find_packages(),
21 include_package_data=True,
22 license='GPL'