Metadata-Version: 2.1
Name: ocp-vtk
Version: 7.5.3.0
Summary: OCP+VTK wheel with shared library dependencies bundled.
Home-page: https://github.com/roipoussiere/OCP
Download-URL: https://github.com/roipoussiere/OCP/releases
Author: fp473, roipoussiere
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: LICENSES_bundled

# OCP

[![Build Status](https://dev.azure.com/cadquery/OCP/_apis/build/status/CadQuery.OCP?branchName=master)](https://dev.azure.com/cadquery/OCP/_build/latest?definitionId=5&branchName=master)
[![Anaconda-Server Badge](https://anaconda.org/cadquery/ocp/badges/installer/conda.svg)](https://conda.anaconda.org/cadquery)

Python wrapper for OCCT7.5.1 generated using pywrap. Typing stubs available [here](https://github.com/CadQuery/OCP-stubs).

## Goals
* Provide thin bindings to OCCT.
* Wrap all OCCT modules (if practical).
* React quickly to new OCCT releases.
* Cater primarily for the CadQuery project.

## Non-goals
* Provide additional functionality not present in OCCT

## Installation
The easiest way to get started is to use conda:
```
conda install -c conda-forge -c cadquery ocp
```
Building from sources is also possible using https://github.com/CadQuery/pywrap
```
pywrap all ocp.toml
cmake -S OCP -B build
cmake --build build
```
but you might need to specify additional headers and libclang location for pywrap:
```
pywrap -i path1/include -i path2/include -l path/to/libclang.so all ocp.toml
```


