-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 813 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Standard
# None
# Pip
from setuptools import setup
from pathlib import Path
# Custom
# None
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="i2pdf",
version="1.1.1",
scripts=["i2pdf.py"],
packages=["auxiliary"],
entry_points={"console_scripts": ["image2pdf=i2pdf:app",
"i2pdf= i2pdf:app"]},
url="https://github.com/christopher-chandler",
license="MIT",
install_requires=["typer", "PyYAML", "Pillow", "PyPDF2"],
author="Christopher Michael Chandler",
author_email="christopher.chandler@outlook.de",
description="A simple CLI app that combines images to a single .pdf",
long_description=long_description,
long_description_content_type="text/markdown",
)