Increase the default width in order to view the max depth spin button
[pysize.git] / setup.py
blob4c8fc4a9f6fd63e6397ba1f2727e203cee0d6447
1 #!/usr/bin/env python
3 import os
4 import sys
6 sys.path.append('setuptools-0.6c3-py2.4.egg')
7 from setuptools import setup, find_packages
9 news_file = file('NEWS')
10 version = news_file.readline().strip()
12 setup(name='pysize',
13 version=version,
14 description='Directory space analyzer',
15 long_description=
16 '''Pysize graphically represents the content of directories as boxes
17 proportional to the relative size of their content. It can be used either
18 in console mode where it generates some ASCII art or with its GTK+ GUI.
19 Its caching property makes it suitable to browse very large directories.''',
20 author='Guillaume Chazarain',
21 author_email='guichaz@yahoo.fr',
22 url='http://guichaz.free.fr/pysize',
23 scripts=['bin/pysize'],
24 packages=find_packages(),
25 include_package_data=True,
26 license='GPL'