Metadata-Version: 2.1
Name: svtter_template_creator
Version: 0.3.2
Summary: 
Keywords: template,django
Author: svtter
Author-email: svtter@163.com
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: click (>=8.1.3,<9.0.0)
Requires-Dist: cookiecutter (>=2.1.1,<3.0.0)
Requires-Dist: toml (>=0.10.2,<0.11.0)
Description-Content-Type: text/markdown

# Template Creator

> This project is generated by cookiecutter.

This commandline application is built for create new project with specify code template.

## Installation

```bash
# from pypi
pip install tc
```

## Usage

`ttc create --name django`

set environment variable: `export TC_URL="<your prefix>"`

template_dict:

```python
prefix = os.getenv("TC_URL", "git@github.com:svtter")
template_dict = {
    "django": "{prefix}/cookiecutter-django.git".format(prefix=prefix),
    "package": "{prefix}/cookiecutter-pypackage.git".format(prefix=prefix),
    "compose": "{prefix}/cookiecutter-compose.git".format(prefix=prefix),
}
```
