-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 871 Bytes
/
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
import setuptools
import subprocess
setuptools.setup(
name= 'pngminifier',
version= subprocess.check_output(['git', 'describe', '--tags']).strip() \
.decode('utf-8') \
.split('-g')[0],
description= "a program that strips out ancillary data "
"from PNG files and reduces the file slightly",
author= "Shantanu Biswas",
author_email= "[email protected]",
packages= ['pngminifier'],
project_urls= {
'Github': 'https://github.com/tripulse/pngminifier'
},
license= 'The Unlicense',
license_file= 'LICENSE.md',
keywords= [
'png', 'minifier', 'minification', 'truncator'
'exif tag remover', 'pngminify'
],
python_requires= ">=3.8",
entry_points={
'console_scripts': [
'pngminifier=pngminifier.__main__:PNGMinifier',
],
}
)