-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 938 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 938 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
30
31
32
33
34
35
36
from setuptools import setup, find_packages
VERSION = "0.0.1"
INSTALL_REQUIRES = (
"Pillow",
"pikepdf"
)
CLASSIFIERS=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11'
]
setup(
name="pic2pdf",
version=VERSION,
author="mashu3",
description="This program convert an entire directory of images into a single PDF file.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="image pdf converter",
url="https://github.com/mashu3/pic2pdf",
license='MIT',
package_dir={"": "src"},
py_modules=["pic2pdf"],
packages = find_packages("src"),
classifiers=CLASSIFIERS,
install_requires=INSTALL_REQUIRES,
entry_points={
"console_scripts": [
"pic2pdf=pic2pdf:main",
]
}
)