source:
inundation/ga/storm_surge/pmesh/setup.py
@
643
Last change on this file since 643 was 349, checked in by duncan, 20 years ago | |
---|---|
File size: 594 bytes |
Rev | Line | |
---|---|---|
[349] | 1 | #!/usr/bin/env python |
2 | ||
3 | from distutils.core import setup, Extension | |
4 | ||
5 | setup (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.