~ubuntu-branches/ubuntu/raring/iotop/raring

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2010-01-12 14:52:38 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100112145238-xt4tzdrwjmqsvf16
Tags: 0.4-1
* New upstream release
  - Switched to distutils and removed setuptools egg (Closes: #563097)
  - Works around weird math domain error (Closes: #563097)
  - Works on Python 2.4 (with ctypes), adust packaging
* Make the watch file a little more flexible

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
 
import sys
4
 
 
5
 
sys.path.insert(0, 'setuptools-0.6c9-py2.4.egg')
6
 
from setuptools import setup, find_packages
 
3
from distutils.core import setup
7
4
from iotop.version import VERSION
8
5
 
9
6
setup(name='iotop',
17
14
      url='http://guichaz.free.fr/iotop',
18
15
      scripts=['bin/iotop'],
19
16
      data_files=[('share/man/man1', ['iotop.1'])],
20
 
      packages=find_packages(),
21
 
      include_package_data=True,
 
17
      packages=['iotop'],
22
18
      license='GPL'
23
19
)