Metadata-Version: 2.3
Name: qa-kit
Version: 0.0.1
Summary: Reserved namespace for a future Python API testing toolkit
License: MIT
Author: Your Name
Author-email: roshanguptamca@gmail.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Project-URL: Homepage, https://github.com/roshanguptamca/qa-kit
Project-URL: Repository, https://github.com/roshanguptamca/qa-kit
Description-Content-Type: text/markdown

# qa-kit

Reserved namespace for a future Python API testing toolkit.

## Installation

```bash
pip install qa-kit
```
## Usage    
```bash
from qa_kit import hello
print(hello())
```

---

## 6️⃣ LICENSE

Use MIT or your preferred license.

---

## 7️⃣ Push to GitHub

```bash
git init
git add .
git commit -m "Initial commit - minimal PyPI-ready package"
git branch -M main
git remote add origin git@github.com:your-personal-username/qa-kit.git
git push -u origin main
```
