Metadata-Version: 2.4
Name: kindleify
Version: 0.2.0
Summary: Convert URLs and PDFs to EPUB for Kindle
Author-email: Your Name <your@email.com>
License: MIT
Keywords: kindle,epub,pdf,converter,ebook
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.14
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.3.2
Requires-Dist: ebooklib>=0.20
Requires-Dist: langdetect>=1.0.9
Requires-Dist: pypdf>=4.0.0
Requires-Dist: pillow>=12.0.0
Requires-Dist: platformdirs>=4.0.0
Requires-Dist: requests
Requires-Dist: trafilatura
Requires-Dist: twine>=6.2.0
Dynamic: license-file

# Kindleify

Convert URLs and PDFs to EPUB format for Kindle.

## Installation

```bash
pip install kindleify
```

## Usage

### Convert URL to EPUB

```bash
kindleify url "https://example.com/article" -o article.epub
```

### Convert PDF to EPUB

```bash
kindleify pdf document.pdf -o book.epub
```

### Send to Kindle

First, configure your Kindle email:

```bash
kindleify config set
```

Then send EPUB to your Kindle:

```bash
kindleify send book.epub
```

### Commands

- `kindleify url` - Convert URL to EPUB
- `kindleify pdf` - Convert PDF to EPUB
- `kindleify send` - Send EPUB to Kindle
- `kindleify config set` - Configure Kindle credentials
- `kindleify config show` - Show current configuration
- `kindleify config clear` - Clear stored credentials

## License

MIT
