Metadata-Version: 2.1
Name: KIG2013_G9_cpptopython
Version: 0.0.4
Summary: C++ code packaged for use in Python for KIG2013 Assignment
Author: Kwong Ye Kun
Author-email: 23006148@siswa.um.edu.my
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# KIG2013 Programming Assignment (Group 9)

This is a python package built using C++ code as the source to enable using C++ code in Python. 


## Installation

Install with pip. Run the following in cmd line:
```
  py -m pip install KIG2013_G9_cpptopython
```
Alternatively on MacOS/Linux:
```
  python3 -m pip install KIG2013_G9_cpptopython
```

## Usage/Examples

```python
import KIG2013_G9_cpptopython

a = 1, b = 2
print(KIG2013_G9_cpptopython.add(a, b)) #Outputs 3
```


## Acknowledgements

 - [Pybind11 Library](https://github.com/pybind/pybind11)
 - [Python Example by pybind11](https://github.com/pybind/python_example)

