Metadata-Version: 2.1
Name: whiteduck
Version: 0.1.10
Summary: A tool to scaffold projects with Whiteduck's recommended tech stack
Home-page: https://github.com/whiteduck
Author: Andre Ratzenberger
Author-email: andre.ratzenberger@whiteduck.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: rich

# Whiteduck Project Scaffolding Tool

A tool to scaffold python projects with Whiteduck's recommended tech stack.


## Installation

```bash
pip install whiteduck
```

## Commands

### Create a New Project

```bash
whiteduck create [--template TEMPLATE_NAME] [--output OUTPUT_PATH]
```

`--template` (optional): The name of the template to use. Defaults to the default template.

`--output` (optional): The output path for the new project. Defaults to the current directory.


### List Available Templates

```bash
whiteduck list-templates
```

### Display Template Information

```bash
whiteduck template_info TEMPLATE_NAME
```



