Version retrival fixes for the About Dialogs
[pyplotsuite.git] / setup.py
blobf32afca63e9ee0260d3d2b588bc5fbdad5b68392
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=['pyplotsuite', 'pyplotsuite.imageanalyzer',
13 'pyplotsuite.plotfile'],
14 package_dir={'pyplotsuite': 'pyplotsuite'},
15 package_data={
16 '': ['README*', 'Changelog*'],
17 'pyplotsuite.imageanalyzer': ['*.glade', 'logo.png', 'icons/*',
18 'samples/*'],
19 'pyplotsuite.plotfile': ['*.glade', 'samples/*']},
20 classifiers=[
21 'Development Status :: 3 - Alpha',
22 'License :: GNU General Public License (GPL)',
23 'Intended Audience :: Science/Research',
24 'Operating System :: OS Independent (Written in an interpreted language)',
25 'Programming Language :: Python',
26 'Topic :: Visualization',
27 'User Interface :: GTK+',
28 ],)