Metadata-Version: 2.1
Name: yymake
Version: 0.3.2
Summary: A corss build dsl make tool
Home-page: https://github.com/evilbinary/ymake
Author: evilbinary
Author-email: rootntsd@gmail.com
Project-URL: Bug Tracker, https://github.com/evilbinary/ymake/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pytest
Requires-Dist: colorama
Requires-Dist: networkx
Requires-Dist: colorlog

# ymake
ymake is a make dsl build tools


## 安装

```bash
pip install yymake
```

## 使用

新建ya.py

```python
from ymake.yaya import *


project("yiyiya",
    version='12.0',
    desc='yiyiya is an os',
)

add_subs('./**/*.py')

```

编译运行

```bash
ya
```
