Parent Directory
|
Revision Log
Initial merge of pyvisi into esys repository.
1 | cochrane | 337 | #!/usr/bin/env python |
2 | |||
3 | # $Id: setup.py,v 1.6 2005/04/29 00:19:11 paultcochrane Exp $ | ||
4 | |||
5 | from distutils.core import setup | ||
6 | |||
7 | a=setup(name="pyvisi", | ||
8 | version="0.1-pre-alpha-4", | ||
9 | description="The Python Visualisation Interface", | ||
10 | author="Paul Cochrane", | ||
11 | author_email="cochrane@esscc.uq.edu.au", | ||
12 | url="http://pyvisi.sourceforge.net", | ||
13 | packages=['pyvisi', | ||
14 | 'pyvisi.renderers', | ||
15 | 'pyvisi.renderers.gnuplot', | ||
16 | 'pyvisi.renderers.vtk', | ||
17 | ], | ||
18 | ) | ||
19 | |||
20 |
ViewVC Help | |
Powered by ViewVC 1.1.26 |