README changes.
[pyplotsuite.git] / setup.py
blob2d2ae116bf292ad77ddbc944e47f7c5ca0038bbd
1 #!/usr/bin/env python
3 from distutils.core import setup
4 from pyplotsuite.common.version import read_version
6 LONG_DESCRIPTION="""
7 *PyPlotSuite* is a set of graphical tools to quick visualize and
8 explore/analyze monodimentional and bidimensional data. The plot
9 created can be saved in a variety of image formats to produce
10 publication quality graphs.
12 At the moment the project is composed by two little stand alone
13 applications: *ImageAnalyzer* and *Plotfile2*. ImageAnalyzer is
14 focused towards images (or any 2D data, such as arrays)
15 visualization, analysis, and measurement. Plotfile2 focus is towards
16 simple data series visualization, with the possibility to quick
17 modify many plot characteristics. Both applications can save the
18 result on a multitude of image file formats (png, eps, jpeg, pdf, and
19 more).
20 """
22 setup(name='PyPlotSuite',
23 version=read_version('pyplotsuite/'),
24 description='GUI tools for data plotting and analysis.',
25 long_description=LONG_DESCRIPTION,
26 author='Antonino Ingargiola',
27 author_email='tritemio@gmail.com',
28 url='http://pyplotsuite.sourceforge.net/',
29 license='GPL',
30 scripts=['./imageanalyzer', './plotfile2',
31 './imageanalyzer.pyw', './plotfile2.pyw'],
32 packages=['pyplotsuite', 'pyplotsuite.imageanalyzer',
33 'pyplotsuite.plotfile', 'pyplotsuite.common'],
34 package_dir={'pyplotsuite': 'pyplotsuite'},
35 package_data={
36 '': ['README*', 'LICENSE.txt', 'Changelog*', ],
37 'pyplotsuite': ['VERSION'],
38 'pyplotsuite.imageanalyzer': ['*.glade', 'logo.png', 'icons/*',
39 'samples/*'],
40 'pyplotsuite.plotfile': ['*.glade', 'samples/*']},
41 #data_files=[('bitmaps', ['bm/b1.gif', 'bm/b2.gif'])],
42 classifiers=[
43 'Development Status :: 3 - Alpha',
44 'License :: GNU General Public License (GPL)',
45 'Intended Audience :: Science/Research',
46 'Operating System :: OS Independent (Written in an interpreted language)',
47 'Programming Language :: Python',
48 'Topic :: Visualization',
49 'User Interface :: GTK+',
50 ],)