Metadata-Version: 2.4
Name: quco
Version: 0.1.0
Summary: Install and fetch bundled Jupyter notebooks from the command line
Author: Lokeshwaran S
License: MIT
Project-URL: Homepage, https://example.com/quco
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# quco

A small Python package that bundles 6 Jupyter notebooks and exposes a CLI:

- `quco list` → lists all notebooks
- `quco show 1` → copies notebook #1 into your current folder

## Local development

```bash
pip install -e .
```

Then run:

```bash
quco list
quco show 1
```

## Publishing to PyPI

1. Update version in `pyproject.toml` and `src/quco/__init__.py`
2. Build package:
   ```bash
   python -m build
   ```
3. Upload:
   ```bash
   python -m twine upload dist/*
   ```

After publishing, users can run:

```bash
pip install quco
```
