Metadata-Version: 2.1
Name: initpkg
Version: 0.1.4
Summary: python package creator
Home-page: http://github.com/wlongxiang/initpkg
Author: Benjamin Wang
Author-email: wlongxiang1119@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Introduction

*initpkg* is a python package that creates a python package structure for you.

# Installation

```
pip install initpkg
```

# Getting started

In command line, run:
```
initpkg <your-package-name>
```

# Publish to PyPI
 - Bump version number in `__init__.py`
 - Push it to git repo
 - Rerun `setup.py` to build python wheels or egg file
 - Tag with the version number following the format of `v1.2.3`
 - Push the tag to git repo
 - Upload to PyPi with Twine command

In CLI (you have to bump the version and push to git manually first):

```bash
make publish version=<version>
```



