File: setup.py

package info (click to toggle)
iotop 0.4.4-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 220 kB
  • sloc: python: 1,252; makefile: 8
file content (19 lines) | stat: -rwxr-xr-x 573 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
#!/usr/bin/env python

from distutils.core import setup
from iotop.version import VERSION

setup(name='iotop',
      version=VERSION,
      description='Per process I/O bandwidth monitor',
      long_description=
'''Iotop is a Python program with a top like UI used to show of behalf of which
process is the I/O going on.''',
      author='Guillaume Chazarain',
      author_email='guichaz@gmail.com',
      url='http://guichaz.free.fr/iotop',
      scripts=['bin/iotop'],
      data_files=[('share/man/man1', ['iotop.1'])],
      packages=['iotop'],
      license='GPL'
)