[MOAB-dev] r2904 - in MOAB/trunk/tools/iMesh/python: . doc

jvporter at wisc.edu jvporter at wisc.edu
Thu May 21 16:22:28 CDT 2009


Author: jvporter
Date: 2009-05-21 16:22:28 -0500 (Thu, 21 May 2009)
New Revision: 2904

Added:
   MOAB/trunk/tools/iMesh/python/doc/
   MOAB/trunk/tools/iMesh/python/doc/index.rst
Modified:
   MOAB/trunk/tools/iMesh/python/setup.py
Log:
Begin some basic documentation for Python interface


Added: MOAB/trunk/tools/iMesh/python/doc/index.rst
===================================================================
--- MOAB/trunk/tools/iMesh/python/doc/index.rst	                        (rev 0)
+++ MOAB/trunk/tools/iMesh/python/doc/index.rst	2009-05-21 21:22:28 UTC (rev 2904)
@@ -0,0 +1,25 @@
+========
+ PyTAPS
+========
+
+About PyTAPS
+============
+
+PyTAPS is a Python package designed to interface with ITAPS, focusing on the
+iMesh interface.
+
+Building PyTAPS
+===============
+
+Like most Python packages, PyTAPS uses Distutils for installation, so in general
+setup consists simply of typing ``python setup.py install`` at the root
+directory for PyTAPS. However, certain iMesh interfaces may require some
+additional setup.
+
+With MOAB
+---------
+
+Since Python modules are loaded as shared libraries, MOAB's iMesh library needs
+to be built with position-independent code. When configuring MOAB, specify
+``--with-pic`` on the command line.
+

Modified: MOAB/trunk/tools/iMesh/python/setup.py
===================================================================
--- MOAB/trunk/tools/iMesh/python/setup.py	2009-05-21 18:05:53 UTC (rev 2903)
+++ MOAB/trunk/tools/iMesh/python/setup.py	2009-05-21 21:22:28 UTC (rev 2904)
@@ -18,6 +18,8 @@
 setup(name = 'PyTAPS',
       version = '0.1',
       description = 'Python bindings for iBase and iMesh interfaces',
+      author = 'Jim Porter',
+      author_email = 'jvporter at wisc.edu',
       packages = ['itaps'],
       ext_modules = [iBase, iMesh]
       )



More information about the moab-dev mailing list