~ubuntu-branches/ubuntu/maverick/iotop/maverick

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2008-05-29 17:31:58 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080529173158-yxi8756tcy0xwpib
Tags: 0.2-1
* New upstream release
* Drop manual page and patch (included upstream)
* Update Homepage to new upstream web page
* Upstream has a tarball and setup.py
  * Add a watch file to track new upstream versions
  * Switch to python-support for installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
import sys
 
4
 
 
5
sys.path.insert(0, 'setuptools-0.6c6-py2.4.egg')
 
6
from setuptools import setup, find_packages
 
7
from iotop.version import VERSION
 
8
 
 
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'
 
23
)