Metadata-Version: 2.4
Name: elaborate
Version: 0.1.0
Summary: Look up a PyPI package without leaving the terminal
Author: Emily
License-Expression: MIT
Keywords: cli,lookup,package,pypi,terminal
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# elaborate

Look up a PyPI package without leaving the terminal.

```
elaborate pandas
elaborate requests --deps
```

No dependencies. Just Python.

## Example

```
$ elaborate flask

  Flask  v3.1.3  ·  updated 28 days ago
  ────────────────────────────────────────────────────────────

  A simple framework for building complex web applications.

  Requires  Python >=3.9

  Links
    Docs       https://flask.palletsprojects.com/
    GitHub     https://github.com/pallets/flask
    PyPI       https://pypi.org/project/Flask

  ────────────────────────────────────────────────────────────
```

---

## Install

```bash
uv tool install elaborate
```

Then use it anywhere:

```bash
elaborate numpy
elaborate flask --deps
elaborate --help
```

## Options

| flag | does |
|---|---|
| `--deps` | show dependencies |
| `--no-color` | disable colour output |
