-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 786 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 786 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
from setuptools import setup, find_packages
setup(
name='image_converter',
version='1.0.0',
description='A tool to convert images to JPEG with optional resizing.',
author='Karim Zouine',
author_email='mails.karimzouine@gmail.com',
license='GPL-3.0-or-later',
packages=find_packages(),
install_requires=[
'Pillow>=9.0.0',
'pyheif>=0.6.0',
'pypdfium2>=4.30.0',
],
entry_points={
'console_scripts': [
'image-converter=backend.image_converter.bootstraper:main',
],
},
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
python_requires='>=3.6',
)