Metadata-Version: 2.1
Name: pyarchetype
Version: 0.1.0
Summary: Your tool to create the skeleton of python projects
Author-email: Jordi Redondo <jordipromotions@gmail.com>
Project-URL: Homepage, https://github.com/redcorjo/pyarchetype
Project-URL: Bug Tracker, https://github.com/redcorjo/pyarchetype/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# PyArchetype

This project is used to simplify the skeleton creation of python projects

## Installation

pip install pyarchetype

## Syntax

Tool to create the skeleton of a python project

```sh
usage: pyarchetype [-h] [-v] [--create] [--wizard] [--path PATH]
                   [--module MODULE] [--name NAME] [--email EMAIL]
                   [--initial_version INITIAL_VERSION] [--force_overwrite]
                   [--create_venv]

Tool to create the skeleton of a python project. Version x.y.z

optional arguments:
  -h, --help            show this help message and exit
  -v, --version         show program's version number and exit
  --create              Create skeleton structure of your python project
  --wizard              Define all parameters in wizard mode
  --path PATH           basedir. Default current dir
  --module MODULE       Module name . Default value is app
  --name NAME           Owner. Default value is user
  --email EMAIL         Email address. Default value is user@email.com
  --initial_version INITIAL_VERSION
                        Initial Version. Default value is 0.0.1
  --force_overwrite     Force overwrite. Default value is false
  --create_venv         Create project virtualenv. Default value is false
```

## Source Code

https://github.com/redcorjo/pyarchetype.git

Version: 2023010700
