Package PyFoam :: Package ThirdParty :: Package Gnuplot :: Module setup
[hide private]
[frames] | no frames]

Source Code for Module PyFoam.ThirdParty.Gnuplot.setup

 1  #! /usr/bin/env python 
 2   
 3  # Copyright (C) 2001-2003 Michael Haggerty <mhagger@alum.mit.edu> 
 4  # 
 5  # This file is licensed under the GNU Lesser General Public License 
 6  # (LGPL).  See LICENSE.txt for details. 
 7   
 8  """Setup script for the Gnuplot module distribution. 
 9   
10  """ 
11   
12  from distutils.core import setup 
13   
14  # Get the version number from the __init__ file: 
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      # Distribution meta-data 
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      # This line is a workaround for a spelling error in earlier 
33      # versions of distutils.  The error has been fixed as of 
34      # python2.3, but we leave this line here for compatibility with 
35      # older python versions. 
36      licence='LGPL', 
37   
38      # Description of the package in the distribution 
39      package_dir={'Gnuplot' : '.'}, 
40      packages=['Gnuplot'], 
41      ) 
42