"Fossies" - the Fresh Open Source Software Archive 
Member "pysize-0.2/setup.py" (11 Mar 2007, 812 Bytes) of package /linux/privat/old/pysize-0.2.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Python source code syntax highlighting (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #!/usr/bin/env python
2
3 import sys
4
5 sys.path.append('setuptools-0.7a1dev_r53614-py2.4.egg')
6 from setuptools import setup, find_packages
7 from pysize.version import VERSION
8
9 setup(name='pysize',
10 version=VERSION,
11 description='Directory space analyzer',
12 long_description=
13 '''Pysize graphically represents the content of directories as boxes
14 proportional to the relative size of their content. It can be used either
15 in console mode where it generates some ASCII art or with its GTK+ GUI.
16 Its caching property makes it suitable to browse very large directories.''',
17 author='Guillaume Chazarain',
18 author_email='guichaz@yahoo.fr',
19 url='http://guichaz.free.fr/pysize',
20 scripts=['bin/pysize'],
21 packages=find_packages(),
22 include_package_data=True,
23 license='GPL'
24 )