Metadata-Version: 2.4
Name: lazyreq
Version: 0.1.1
Summary: A library for manage dependencies.
Author: Netronis
License-Expression: Apache-2.0
Requires-Dist: numpy>=2.0.2 ; extra == 'demo'
Requires-Dist: pytest>=8.4.2 ; extra == 'dev'
Requires-Dist: ruff>=0.6.9 ; extra == 'dev'
Requires-Dist: mypy>=1.11.2 ; extra == 'dev'
Requires-Dist: build>=1.3.0 ; extra == 'dev'
Requires-Dist: twine>=6.2.0 ; extra == 'dev'
Requires-Python: >=3.9
Project-URL: Homepage, https://github.com/Netronis/lazyreq
Project-URL: Source, https://github.com/Netronis/lazyreq
Provides-Extra: demo
Provides-Extra: dev
Description-Content-Type: text/markdown

<p align="center">
  <img src="https://img.shields.io/badge/-lazyreq-blue?style=for-the-badge&logo=python&logoColor=white" alt="lazyreq"/>
</p>

---

<p align="center">
  🐍 Lightweight and convenient Python library for LazyImport.
</p>

<p align="center">
  <a href="https://pypi.org/project/lazyreq/">
    <img src="https://img.shields.io/pypi/v/lazyreq?color=blue&label=PyPI&style=flat-square" alt="PyPI version">
  </a>
  <a href="https://github.com/INetrois/lazyreq/actions/workflows/pypi-publish.yml">
    <img src="https://img.shields.io/github/actions/workflow/status/INetrois/lazyreq/pypi-publish.yml?branch=main&label=CI&style=flat-square" alt="CI">
  </a>
  <a href="https://github.com/INetrois/lazyreq/blob/main/LICENSE">
    <img src="https://img.shields.io/github/license/INetrois/lazyreq?style=flat-square" alt="License">
  </a>
</p>


## 🔹 Features

- LazyImport
- AutoInstall package with pip

## 💻 Installation

```bash
pip install lazyreq
```

## 🚀 Usage

```
from lazyreq import require

np = require("numpy")
print(np.arange(5))
```

<p align="center"> Made with ❤️ by <a href="https://github.com/INetrois">INetrois</a> </p>
