Metadata-Version: 2.4
Name: bible-copier
Version: 0.1.0
Summary: A library to fetch Bible passages and copy them to the clipboard.
Author-email: Your Name <your.email@example.com>
Project-URL: Homepage, https://github.com/yourusername/bible-copier
Project-URL: Bug Tracker, https://github.com/yourusername/bible-copier/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: meaningless
Requires-Dist: pyperclip

# Bible Copier

A Python library and CLI to fetch Bible passages and copy them to your clipboard.

## Installation

```bash
pip install bible-copier
```

## CLI Usage

After installation, you can run the interactive tool:

```bash
bible-copy
```

It will prompt you for a verse reference like `John 3:16 (NIV)`.

## Library Usage

You can also use it in your own Python projects:

```python
from bible_copier import fetch_passage

parts, reference, translation = fetch_passage("John 3:16 (NIV)")
if parts:
    print("".join(parts))
```

## Dependencies

- `meaningless`
- `pyperclip`
