Metadata-Version: 2.3
Name: addpage
Version: 0.4.1
Summary: `addpage` is a package for adding page number to PDF file.
Project-URL: homepage, https://github.com/SaitoTsutomu/addpage
Author-email: Saito Tsutomu <tsutomu7@hotmail.co.jp>
License: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.12
Requires-Dist: pdfformfiller>=0.4
Requires-Dist: pypdf2==1.27.9
Requires-Dist: reportlab>=4.2.4
Description-Content-Type: text/markdown

`addpage` is a package for adding page number to PDF file.

## Usage

```sh
$ addpage -h
usage: addpage [-h] [-o OUTFILE] [-n FONT_NAME] [-z FONT_SIZE] [-s START]
              [-k SKIP] [-x MARGIN_X] [-y MARGIN_Y]
              [-a {center,left,right}] [-f FORMAT]
              infile

Add page number to PDF file.

positional arguments:
  infile                input PDF file

options:
  -h, --help            show this help message and exit
  -o OUTFILE, --outfile OUTFILE
  -n FONT_NAME, --font-name FONT_NAME
  -z FONT_SIZE, --font-size FONT_SIZE
  -s START, --start START
  -k SKIP, --skip SKIP
  -x MARGIN_X, --margin-x MARGIN_X
  -y MARGIN_Y, --margin-y MARGIN_Y
  -a {center,left,right}, --alignment {center,left,right}
  -f FORMAT, --format FORMAT
```

## Requirements

* Python 3

## Setup

```sh
$ pip install addpage
```

## History

* 0.0.1 (2018-9-23): first release
