Metadata-Version: 2.4
Name: python-app-template-starter
Version: 0.1.0
Summary: A Python application template starter with pre-configured structure for building Python applications.
Home-page: https://github.com/GabriOliv/python-app-template-starter
Author: GabriOliv
Author-email: GabriOliv <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/GabriOliv/python-app-template-starter
Project-URL: Bug Tracker, https://github.com/GabriOliv/python-app-template-starter/issues
Project-URL: Source Code, https://github.com/GabriOliv/python-app-template-starter
Keywords: template,starter,python,application
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML>=6.0
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# 🐍 python-app-template-starter

A Python application template starter with pre-configured structure for building Python applications.

## 📦 Installation

### 📋 Prerequisites

- Python 3.12 or higher
- pip

### 🔧 Install from source (development mode)

```bash
git clone https://github.com/GabriOliv/python-app-template-starter.git
cd python-app-template-starter
pip install -e .
```

### 📥 Install from PyPI

```bash
pip install python-app-template-starter
```

## 🚀 Usage

### ▶️ Run as a module

```bash
python -m python_app_template_starter
```

Output:
```
Hello World
```

### 💻 Run via command-line

```bash
python-app-template-starter
```

## 🛠️ Development

To contribute or develop locally:

```bash
git clone https://github.com/GabriOliv/python-app-template-starter.git
cd python-app-template-starter
pip install -e .
```

Then modify the code in `python_app_template_starter/` directory.

---
