-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 706 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 706 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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='cardimpose',
version='0.2.2',
description='Impose multiple copies of a pdf onto a larger document.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Frederik Scheerer',
url='https://github.com/frsche/cardimpose',
packages=find_packages(),
install_requires=[
'pymupdf',
],
entry_points={
'console_scripts': [
'cardimpose = cardimpose.__main__:main',
],
},
keywords='imposition, print, pdf'
)