/create-python-app

CLI tool to quickstart Python app.

Primary LanguagePythonMIT LicenseMIT

create python app

MIT License

CLI tool to quickstart Python app.

Requirement

  • Python3

Installation

$ git clone <this repo>
$ cd <this repo>

$ python setup.py install

Usage

$ create-python-app
app name : <app name>
author : <author name>
description : <app description>
app version : <app version>
python version : <python version>
Created <app name> app.

Created Project

<app name>
├── .gitignore
├── LICENSE
├── Pipfile
├── README.md
├── core
│   └── __init__.py
├── main.py
├── setup.py
└── tests