Metadata-Version: 2.1
Name: cppygen
Version: 0.1.1
Summary: A simple c++ code generator for pybind11
Author: Gen740
Author-email: keener_slimier_0m@icloud.com
Requires-Python: >=3.10,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: clang (>=14.0,<15.0)
Requires-Dist: coloredlog (>=0.2.5,<0.3.0)
Requires-Dist: pytest (>=7.1.3,<8.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Description-Content-Type: text/markdown

# CPPYGEN

Automatic code generation for pybind11.

Pybind11 is a powerful library that exposes C++ types in Python and vice versa, 

This generator will be generate c++ code for pybind11, and make it easy to
write a python module using c++.

## Installation
```
pip install cppygen
```

## Env

```bash
PYGEN_LIBCLANG_PATH # Path to clang shared library
PYGEN_COMPILE_FLAGS # additional flags to parse file
```

