-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.52 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
import os
from setuptools import find_packages, setup
from image_optimizer import __version__
base = os.path.abspath(os.path.dirname(__file__))
setup(
name='image_optimizer',
version=__version__,
description='PIL based image optimizer',
long_description='PIL based image optimizer.\nDetails: https://github.com/Bobsans/image-optimizer',
url='https://github.com/Bobsans/image-optimizer',
download_url='https://pypi.python.org/pypi/image_optimizer',
author='Bobsans',
author_email='[email protected]',
maintainer='Bobsans',
maintainer_email='[email protected]',
license='Freeware',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: Freeware',
'Natural Language :: English',
'Natural Language :: Russian',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Multimedia :: Graphics',
'Topic :: Utilities'
],
keywords='PIL optimize image',
platforms=['Any'],
packages=find_packages(),
install_requires=['Pillow'],
entry_points={
'console_scripts': ['image_optimizer=image_optimizer.__main__:main']
}
)