Use setuptools instead of distutils for setup.py and allow to build working RPM
[pysize.git] / setup.py
blob5a5849daad1d935913704379bd512254e7cbf147
1 #!/usr/bin/env python
3 import os
4 from setuptools import setup, find_packages
6 setup(name='pysize',
7 version='0.1',
8 description='Directory space analyzer',
9 long_description=
10 '''Pysize graphically represents the content of directories as boxes
11 proportional to the relative size of their content. It can be used either
12 in console mode where it generates some ASCII art or with its GTK+ GUI.
13 Its caching property makes it suitable to browse very large directories.''',
14 author='Guillaume Chazarain',
15 author_email='guichaz@yahoo.fr',
16 url='http://guichaz.free.fr/pysize',
17 scripts=['bin/pysize'],
18 packages=find_packages(),
19 include_package_data=True,
20 license='GPL'