Metadata-Version: 2.4
Name: pdf-merger-cli
Version: 0.1.0
Summary: CLI tool to merge PDF files
Author: Francesco Dell'Ascenza
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer[all]
Requires-Dist: PyPDF2
Dynamic: license-file
Dynamic: requires-python

# 📎 pdf-merger-cli

Un semplice tool CLI per unire file PDF in Python.

## 📦 Installation

```bash
pip install pdf-merger-cli
```

## 🛠️ How to use

```bash
pdfmerge file1.pdf file2.pdf -o output.pdf
```

Even entire directories:

```bash
pdfmerge ./documenti/ -o merged.pdf
```

With manual ordering:

```bash
pdfmerge 3.pdf 1.pdf 2.pdf -o merged.pdf --ordered
```

🧪 Unit Tests

```bash
pip install .
pdfmerge ...
```

## 🐍 Requirements

* Python ≥ 3.7
