Updated release script
[pysize.git] / setup.py
blob2e1aa3ee5ec55285b9049f1b05268deaa7ad9053
1 #!/usr/bin/env python
3 import sys
5 sys.path.insert(0, 'setuptools-0.6c6-py2.4.egg')
6 from setuptools import setup, find_packages
7 from pysize.version import VERSION
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@gmail.com',
19 url='http://guichaz.free.fr/pysize',
20 scripts=['bin/pysize'],
21 packages=find_packages(),
22 include_package_data=True,
23 license='GPL'