{ "info": { "author": "Jim Porter", "author_email": "jvporter@wisc.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)", "Topic :: Scientific/Engineering" ], "description": ".. PyTAPS\n Jim Porter, \n Revision 1.3, June 13, 2011\n\nInstallation\n============\n\nPyTAPS requires the following to be installed on your system:\n\n* Python 2.5+\n* `NumPy `_ 1.3.0+\n* At least one of...\n\n * `MOAB `_ (or other iMesh\n interface)\n * `CGM `_ (or other iGeom\n interface)\n * `Lasso `_ (or other iRel\n interface)\n\nOnce you have the prerequisites, the easiest way to install PyTAPS is to use\n`Pip `_ (0.7+ recommended)::\n\n pip install pytaps\n\nThis will download, compile, and install PyTAPS automatically. If you have some\nbut not all of the ITAPS interfaces (e.g. only iMesh), this will only install\ninterfaces for the libraries you have, as described in `Autodetection of\nLibraries`_.\n\nBuilding Manually\n-----------------\n\nLike many Python packages, PyTAPS uses Setuptools for installation, so in\ngeneral setup consists simply of downloading the tarball, extracting it, and\ntyping ``python setup.py install`` inside the extracted directory. However,\ncertain ITAPS interfaces may require some additional setup.\n\nAutodetection of Libraries\n__________________________\n\nThe PyTAPS setup script supports importing definitions from the\n`iXxx-Defs.inc` files, where `iXxx` is the name of the interface. PyTAPS will\nattempt to find these files automatically, by searching in some common\nlocations:\n\n#. The files specified in the environment variables ``IXXX_DEFS``\n#. For each directory `dir` in the environment variables ``PATH`` and\n ``CPATH``, look in `dir/../lib`\n#. Each directory in the environment variable ``LD_LIBRARY_PATH``\n#. `/usr/local/lib`\n#. `/usr/lib`\n\nIf the PyTAPS setup script cannot find the `iXxx-Defs.inc` file, it will\nassume you do not have that interface installed and automatically disable it in\nPyTAPS.\n\nIf you have the `iXxx-Defs.inc` files installed but not in any of the above\nlocations, you can specify where they are in the global command-line options\n``--iXxx-path=PATH``, like so::\n\n python setup.py --iMesh-path=PATH install\n\nUsage\n=====\n\nThe following example illustrates the basics of using iMesh. This script gets\nall the faces of a mesh and prints out the coordinates of their vertices::\n\n from itaps import iBase, iMesh\n\n mesh = iMesh.Mesh()\n mesh.load(\"mesh.vtk\")\n\n faces = mesh.getEntities()\n adj = mesh.getEntAdj(faces, iBase.Type.vertex)\n\n for i in adj:\n for j in i:\n x, y, z = mesh.getVtxCoords(j)\n print \"%f, %f, %f\" % (x, y, z)\n print\n\nTesting\n=======\n\nBasic tests of the interfaces are located in test/. To run all the tests, run\n``python setup.py test``. To run a subset of tests, use ``-S ``,\ne.g. ``python setup.py -S test.imesh``.", "description_content_type": null, "docs_url": "https://pythonhosted.org/PyTAPS/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://packages.python.org/PyTAPS/", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "PyTAPS", "package_url": "https://pypi.org/project/PyTAPS/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/PyTAPS/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://packages.python.org/PyTAPS/" }, "release_url": "https://pypi.org/project/PyTAPS/1.4/", "requires_dist": null, "requires_python": null, "summary": "Python bindings for ITAPS interfaces", "version": "1.4" }, "last_serial": 785379, "releases": { "0.9.0": [ { "comment_text": "", "digests": { "md5": "80785467a5d6a39030e033f899c7f432", "sha256": "b9fa472a01dfe50c1be207b794b46319d89afbb415a036a15464f351c664587e" }, "downloads": -1, "filename": "PyTAPS-0.9.0.tar.gz", "has_sig": false, "md5_digest": "80785467a5d6a39030e033f899c7f432", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93965, "upload_time": "2010-01-26T00:16:11", "url": "https://files.pythonhosted.org/packages/ad/72/ced9bcebc81773339ecf24e096cb7e27d129eb47581fc3732040d7970949/PyTAPS-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "42d01821ba932c1849c6d1c87fd64d74", "sha256": "93f206786e8efd9a4e74f1ece1ab8f054269d41b434d1b4b671bd910653088f6" }, "downloads": -1, "filename": "PyTAPS-0.9.1.tar.gz", "has_sig": false, "md5_digest": "42d01821ba932c1849c6d1c87fd64d74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97013, "upload_time": "2010-02-01T06:10:48", "url": "https://files.pythonhosted.org/packages/94/73/89473f786963d2575ac190961492cd1d01d38ea90689d1cabff099bcd26d/PyTAPS-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "e9a6e4f6f52c0341f7adb4884b8a98c4", "sha256": "c5bffad5d8dc38ebb1a91f26c34517e32294f83dfb4e56b839166913786c9046" }, "downloads": -1, "filename": "PyTAPS-0.9.2.tar.gz", "has_sig": false, "md5_digest": "e9a6e4f6f52c0341f7adb4884b8a98c4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101096, "upload_time": "2010-02-18T22:54:01", "url": "https://files.pythonhosted.org/packages/11/5c/b44c354daef4515fd4bfd0b5b62f09e7662cc428875bf737657c1941127c/PyTAPS-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "a1f5f440e20337fde36ff66f6ab054e7", "sha256": "d08a56a6d6615ea411e1aba2dd91f984b5a75fcf6c5eab41d0bfc4474d197e2d" }, "downloads": -1, "filename": "PyTAPS-0.9.3.tar.gz", "has_sig": false, "md5_digest": "a1f5f440e20337fde36ff66f6ab054e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 102857, "upload_time": "2010-03-23T23:41:09", "url": "https://files.pythonhosted.org/packages/cb/c9/a5076637393fd8b969757f41245336786a8aecacd2af2efa7a16b4e643a7/PyTAPS-0.9.3.tar.gz" } ], "1.0rc1": [ { "comment_text": "", "digests": { "md5": "54bb82c751af6535933904a9eb68d55f", "sha256": "d3f4c79fcecb1a987b82a49878f39340329c229fa2449ee52351808abdbd4045" }, "downloads": -1, "filename": "PyTAPS-1.0rc1.tar.gz", "has_sig": false, "md5_digest": "54bb82c751af6535933904a9eb68d55f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121385, "upload_time": "2010-05-13T07:31:25", "url": "https://files.pythonhosted.org/packages/e7/ea/d232299c7e466b62bde797c199294abfffd0d21091b89bf69237185b9e47/PyTAPS-1.0rc1.tar.gz" } ], "1.0rc2": [ { "comment_text": "", "digests": { "md5": "0b59942f5b31a19a0030438065475d3f", "sha256": "f242546984b6b1bebc999e1ed7a2a75676181f4f300c87de55823c59671f5a47" }, "downloads": -1, "filename": "PyTAPS-1.0rc2.tar.gz", "has_sig": false, "md5_digest": "0b59942f5b31a19a0030438065475d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 120650, "upload_time": "2010-05-19T22:25:46", "url": "https://files.pythonhosted.org/packages/e1/8b/e364cda55b337d6164d12bd8d395d268b6496050a2626a0b3b795a392ffc/PyTAPS-1.0rc2.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "d988e48c7af7f62f00f3ea34894ca9b4", "sha256": "2e2a3a576b62532c1202ba2f6295e4d96559a3899a36f7491a70dbf60b7c77f9" }, "downloads": -1, "filename": "PyTAPS-1.2.tar.gz", "has_sig": false, "md5_digest": "d988e48c7af7f62f00f3ea34894ca9b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123718, "upload_time": "2011-03-25T21:57:39", "url": "https://files.pythonhosted.org/packages/db/b9/0f7db1437663a20bf214b18ea5e4533aa1ddcb0883ee36e4dbe6b9e05678/PyTAPS-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "708a8b051b36c3a059c553b3c64942c3", "sha256": "4d0b2ce3622dbc2a9b4fdae41130a533815c42b7096d52acbc93c4dbce9b40c4" }, "downloads": -1, "filename": "PyTAPS-1.3.tar.gz", "has_sig": false, "md5_digest": "708a8b051b36c3a059c553b3c64942c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 124012, "upload_time": "2011-06-14T19:41:10", "url": "https://files.pythonhosted.org/packages/5b/47/74e9678c5d515036deac580243b3dfffa15fcb4e1d568ddbad6677a4c20f/PyTAPS-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "36ba401d99a165032e7455a43f1e9a7f", "sha256": "6c313c4ec97529546c0d56213f39845ade55073cb72f995281743fb6a10f3294" }, "downloads": -1, "filename": "PyTAPS-1.4.tar.gz", "has_sig": false, "md5_digest": "36ba401d99a165032e7455a43f1e9a7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128562, "upload_time": "2012-04-12T23:16:03", "url": "https://files.pythonhosted.org/packages/7a/51/c5915ca128da8ab178c3f2a52eae9abcb70ac9b9f5e0d9dd917007730dc8/PyTAPS-1.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "36ba401d99a165032e7455a43f1e9a7f", "sha256": "6c313c4ec97529546c0d56213f39845ade55073cb72f995281743fb6a10f3294" }, "downloads": -1, "filename": "PyTAPS-1.4.tar.gz", "has_sig": false, "md5_digest": "36ba401d99a165032e7455a43f1e9a7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128562, "upload_time": "2012-04-12T23:16:03", "url": "https://files.pythonhosted.org/packages/7a/51/c5915ca128da8ab178c3f2a52eae9abcb70ac9b9f5e0d9dd917007730dc8/PyTAPS-1.4.tar.gz" } ] }