Updates to README and some code comments.
[pyplotsuite.git] / setup.py
blobe2e48a81ec4f85691d9919ebcaf3ac951b6d4027
1 #!/usr/bin/env python
3 from distutils.core import setup
5 setup(name='PyPlotSuite',
6 version='0.1-alpha7',
7 description='GUI tolls for data plotting and analysys.',
8 author='Antonino Ingargiola',
9 author_email='tritemio@gmail.com',
10 url='http://pyplotsuite.sourceforge.net/',
11 scripts=['imageanalyzer', 'plotfile2'],
12 packages=['common', 'imageanalyzer', 'plotfile'],
13 classifiers=[
14 'Development Status :: 3 - Alpha',
15 'License :: GNU General Public License (GPL)',
16 'Intended Audience :: Science/Research',
17 'Operating System :: OS Independent (Written in an interpreted language)',
18 'Programming Language :: Python',
19 'Topic :: Visualization',
20 'User Interface :: GTK+',
21 ],)