14 lines
545 B
TOML
14 lines
545 B
TOML
[project]
|
|
name = "cambridge-core-merge"
|
|
authors = [{ name = "Sayantan Santra", email = "sayantan.santra689@gmail.com" }]
|
|
license = "GPL-3.0-only"
|
|
classifiers = ["Programming Language :: Python :: 3"]
|
|
version = "0.1.0"
|
|
description = "A python script to merge books downloaded from Cambridge Core into a single PDF file"
|
|
readme = "README.md"
|
|
keywords = ["script", "books", "merge", "pdf", "cambridge-core"]
|
|
requires-python = ">=3.8"
|
|
dependencies = ["pypdf", "roman", "pillow"]
|
|
|
|
[project.scripts]
|
|
cambridge-core-merge = "cambridge_core_merge:main"
|