-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.05 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
from setuptools import setup, find_packages
from pytinypng import __version__
print __version__
setup(
name='pytinypng',
version=__version__,
description='Batch compression for PNG images',
long_description='pytinypng.py is a batch image compression tool for optimizing '
'thousands of images in png format.'
'Under the hook it uses tinypng.com API to shrink png files.',
keywords='tinyping compression png optimization',
author='Igor Vasilcovsky',
author_email='[email protected]',
url='https://github.com/vasilcovsky/pytinypng',
license='BSD License',
packages=find_packages(exclude=['tests']),
install_requires=[],
entry_points = {
'console_scripts': [
'pytinypng = pytinypng.pytinypng:main'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: System :: Archiving :: Compression'
]
)