Metadata-Version: 2.1
Name: cywheel
Version: 1.0a6
Summary: Easy packaging for cython wheels.
Home-page: https://github.com/JeanMaximilienCadic/cywheel-python
Author: Jean Maximilien Cadic
Author-email: j.cadic@9dw-lab.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.5
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: gnutools-python

<p align="center">
  <img src="https://raw.githubusercontent.com/JeanMaximilienCadic/cywheel-python/master/img/cython.png"/>
</p>

# Cython packaging for python wheels

## Requirements
```bash
pip install -r requirements.txt
pip install cywheel
```
## Getting Started


```bash
from cywheel import CyMake

if __name__=="__main__":
    maker = CyMake(root="/home/user/python/project-python",
                   setup="setup.py",
                   version="1.0a1")

    maker.make(submodule="submodule1")

```


## Contributions

Email me at j.cadic@9dw-lab.com for any questions.


