Metadata-Version: 2.4
Name: medicentrev3-auth
Version: 1.0.0
Summary: Authentication and navigation module for MedicentreV3 automation
Author-email: Denis Ndiritu <denis@hanmak.co.ke>
License: MIT
Project-URL: Homepage, https://github.com/Hanmak-Technologies-Automation-Project/medicentrev3-authentication-package
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: selenium>=4.0.0
Requires-Dist: python-dotenv>=0.19.0
Requires-Dist: webdriver-manager>=3.8.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=5.0.0; extra == "dev"

# MedicentreV3 Authentication Package

A reusable Python package for MedicentreV3 authentication and navigation.

## Installation

```bash
# Install from GitHub
pip install git+https://github.com/Hanmak-Technologies-Automation-Project/medicentrev3-authentication-package.git

# For development
pip install -e git+https://github.com/Hanmak-Technologies-Automation-Project/medicentrev3-authentication-package.git

## Updating the Package

When updates are available, users should upgrade using:

```bash
# Upgrade to latest version
pip install --upgrade git+https://github.com/Hanmak-Technologies-Automation-Project/medicentrev3-authentication-package.git

# Or reinstall (force latest)
pip install --force-reinstall git+https://github.com/Hanmak-Technologies-Automation-Project/medicentrev3-authentication-package.git
```

**Important**: Always use `--upgrade` or `--force-reinstall` when updating from GitHub to ensure you get the latest changes.
