This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.46 KB
/
setup.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
import setuptools
import os
import shutil
import makejxl
if not os.path.exists('makejxl'):
os.mkdir('makejxl')
shutil.copyfile('makejxl.py', 'makejxl/__init__.py')
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
'click>=7.1.2'
]
setuptools.setup(
name="makejxl",
version=makejxl.__version__,
author="Evgeny Varnavskiy",
author_email="[email protected]",
description="This tool will bulk encode image files in given directory to JPEG-XL",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/varnav/makejxl",
keywords=["jpeg", "jpeg-xl", "transcoder"],
packages=setuptools.find_packages(),
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Utilities",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
python_requires='>=3.7',
entry_points={
"console_scripts": [
"makejxl = makejxl:main",
]
}
)