Metadata-Version: 2.4
Name: initforge
Version: 0.1.5
Summary: Bootstrap Python projects with auto-generated structure and README
Author: Shriful Islam
License: MIT
Project-URL: Homepage, https://github.com/Shri7ul/projinit
Keywords: project-generator,bootstrap,python,template
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# projinit

This project was bootstrapped using **projinit**.

---

## ⚙️ Environment Setup

Create a new conda environment:

```bash
conda create -n yt python=3.11 -y
```

Activate the environment:

``` bash
conda activate yt
```
📦 Install Dependencies
```bash

pip install -r requirements.txt
```
▶️ Run the Project
```bash

python app.py
```
🧪 Run Tests (optional)
```bash

pytest
```
