Metadata-Version: 2.5
Name: duplix
Version: 0.1.1
Summary: Scaffold a new project by copying a bundled template project.
Project-URL: Homepage, https://github.com/BhishanSharma/duplix
Project-URL: Issues, https://github.com/BhishanSharma/duplix/issues
Author-email: Bhishan <you@example.com>
License: MIT
License-File: LICENSE
Keywords: cli,scaffold,template
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest>=7.0; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# duplix

Scaffold a new project by copying a bundled template project, exactly as it is.

## Installation

```bash
pip install duplix
```

## Usage

```bash
python -m duplix my_new_project
# or, after install:
duplix my_new_project
```

This copies duplix's bundled template folder verbatim into `./my_new_project/`
(files, code, and structure unchanged - nothing is renamed or rewritten).

### Options

```bash
python -m duplix my_new_project --dir ./somewhere
```

## Development

```bash
pip install -e ".[dev]"
pytest
```

## Publishing

```bash
python -m build
python -m twine upload dist/*
```
