-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
44 lines (39 loc) · 1.33 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="thumbor-plugins-pngcrush",
version="0.1.5",
keywords="thumbor optimizers pngcrush",
author="Guilherme Souza",
url="https://github.com/thumbor/thumbor-plugins",
license="MIT",
description="Thumbor optimizer to run pngcrush",
long_description="""
Available Configs:
- PNGCRUSH_PATH
This package is part of the thumbor-plugins repository.
For more information, visit: https://github.com/thumbor/thumbor-plugins
""",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Multimedia :: Graphics :: Presentation",
],
packages=[
"thumbor_plugins.optimizers.pngcrush",
],
package_dir={
"thumbor_plugins.optimizers.pngcrush": ".",
},
)