Metadata-Version: 2.4
Name: cmlibs.importer
Version: 0.7.1
Summary: Import a variety of formats to CMLibs Zinc.
Author-email: Hugh Sorby <h.sorby@auckland.ac.nz>
License-Expression: Apache-2.0
Project-URL: Homepage, https://cmlibs.org
Project-URL: Repository, https://github.com/CMLibs-Python/cmlibs.importer
Keywords: Import,CMLibs,Zinc
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Requires-Python: >=3.8
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: cmlibs.zinc
Requires-Dist: pointpare
Provides-Extra: common
Requires-Dist: trimesh; extra == "common"
Requires-Dist: Shapely; extra == "common"
Provides-Extra: svg
Requires-Dist: trimesh; extra == "svg"
Requires-Dist: svg.path; extra == "svg"
Requires-Dist: lxml; extra == "svg"
Provides-Extra: mbfxml
Requires-Dist: mbfxml2ex; extra == "mbfxml"
Dynamic: license-file


===============
CMLibs Importer
===============

CMLibs importer is a library for importing data into Zinc.  This software can be found on PyPi and installed with the following command::

  pip install cmlibs.importer

To support import of common mesh types: stl, obj, ply, and dxf install additional requirements with::

  pip install cmlibs.importer['common']

To support import of svg files install additional requirements with::

  pip install cmlibs.importer['svg']

To support import of MBF XML files install additional requirements with::

  pip install cmlibs.importer['mbfxml']

To support import of all supported formats install with::

  pip install cmlibs.importer['all']
