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