Metadata-Version: 2.4
Name: pyapptest
Version: 1.0.0
Summary: Manager for fastapptest and flaskapptest libraries
Author-email: Ganesh Nalawade <your_email@example.com>
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapptest>=1.0.0
Requires-Dist: flaskapptest>=1.0.0
Dynamic: license-file

# pyapptest

**pyapptest** is a lightweight Python package designed to manage your testing libraries for web applications.  
It allows easy **installation, uninstallation, and selection** of testing libraries like **FastAPI** and **Flask**.  

By default, installing `pyapptest` will install both `fastapptest` and `flaskapptest` automatically.

---

## **Installation**

```bash
pip install pyapptest


Usage
Install libraries individually
# Install only fastapptest
pyapptest install --lib fastapptest

# Install only flaskapptest
pyapptest install --lib flaskapptest

Uninstall libraries individually
# Uninstall fastapptest
pyapptest uninstall --lib fastapptest

# Uninstall flaskapptest
pyapptest uninstall --lib flaskapptest

Select active testing library
pyapptest options


Example output:

Select which testing library to use:
1. fastapptest
2. flaskapptest
Enter number: 1
Active testing library set to fastapptest


The selected library will be used as the active testing library for your projects.

You can always switch libraries by running pyapptest options again.

Notes

For detailed commands and usage of each library, please check their respective documentation:

fastapptest commands

flaskapptest commands

pyapptest does not modify or replace the CLI commands of the sub-libraries.
