Metadata-Version: 2.1
Name: py_starter_auto_template
Version: 0.0.1
Summary: Creating a template Python package with a CLI interface. 
Requires-Python: >3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bump2version==1.0.1
Requires-Dist: setuptools==69.0.3

# PythonStarter
 Auto-generate starter template of python3 and create env

# Usage
## To create a project base template with bump2version managing versioning
```bash
  pyinit -m create <project_name> 
```
In your project folder, it will create 
```bash
  package_name/
  |-- src/
  |   |-- __init__.py
  |-- tests/
  |   |-- test_placeholder.py
  |-- .bumpversion.cfg
  |-- .gitattributes
  |-- .girigore
  |-- MANIFEST.in
  |-- pytest.ini
  |-- setup.py
```

## To create github/workflows
```bash
  pyinit -m create <project_name> -i ci 
```

It will create
```bash
.github/
  |-- workflows/
  |   |-- <project_name>_ci.yml

```




