Metadata-Version: 2.1
Name: pypcreate
Version: 0.1.8
Summary: Python Package creation tool
Home-page: https://github.com/zhz03/PyPCreate
Author: Zhaoliang Zheng
Author-email: zhz03@g.ucla.edu
License: GNU GENERAL PUBLIC LICENSE V3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: argparse
Requires-Dist: pyyaml

# PyPCreate

Pypcreate is a easy to use Python package creation tool.

## Installation

```shell
pip install pypcreate

# to upgrade 
pip install --upgrade pypcreate
```

## Usage

### 1 mkdir

To create a directory with empty`__init__.py` and `README.md` :

```shell
pypcreate --mkdir directory_name
```

### 2 yamlmkdir

To create a set up directories from a yaml file:

```shell
pycreate --yamlmkdir yamlname.yaml
```

