-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (38 loc) · 1.36 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
setup(
name='wagtailtinypng',
version='0.0.3',
packages=find_packages(),
include_package_data=True,
license='MIT',
description='Allow lossless .jpeg, .jpg, and .png compression through the Wagtail admin interface using tinypng.com.',
long_description='For installation and settings see https://github.com/KalobTaulien/wagtail-tinypng',
url='https://github.com/KalobTaulien/wagtail-tinypng',
author='Kalob Taulien',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP',
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
keywords='development',
install_requires=[
'wagtail>=2.3.0',
'Django>=2.0',
'tinify>=1.5.1'
]
)