source: anuga_core/source/anuga/pmesh/setup.py @ 7276

Last change on this file since 7276 was 349, checked in by duncan, 20 years ago

adding pmesh

File size: 594 bytes
Line 
1#!/usr/bin/env python
2
3from distutils.core import setup, Extension
4
5setup (name = "pMesh",
6       version = "1.XX",
7       author="Duncan Gray",
8       author_email="duncan.gray@ga.gov.au",
9       ext_modules = [
10                      Extension("triang",["triangle/triangle.c",
11                                          "triangle/triangmodule.c"],
12                                define_macros=[("TRILIBRARY",1),
13                                               ("NO_TIMER",1)]
14                                )           
15                     
16                      ]
17       )
Note: See TracBrowser for help on using the repository browser.