1
2
3
4
5
6
7
8 """Setup script for the Gnuplot module distribution.
9
10 """
11
12 from distutils.core import setup
13
14
15 from __init__ import __version__
16
17 long_description = """\
18 Gnuplot.py is a Python package that allows you to create graphs from
19 within Python using the gnuplot plotting program.
20 """
21
22 setup (
23
24 name='gnuplot-py',
25 version=__version__,
26 description='A Python interface to the gnuplot plotting program.',
27 long_description=long_description,
28 author='Michael Haggerty',
29 author_email='mhagger@alum.mit.edu',
30 url='http://gnuplot-py.sourceforge.net',
31 license='LGPL',
32
33
34
35
36 licence='LGPL',
37
38
39 package_dir={'Gnuplot' : '.'},
40 packages=['Gnuplot'],
41 )
42