forked from tinify/tinify-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (45 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
53 lines (45 loc) · 1.55 KB
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
46
47
48
49
50
51
52
53
import sys
import os
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'tinify'))
from version import __version__
install_require = ['requests >= 2.7.0, < 3.0.0']
tests_require = ['nose >= 1.3, < 2.0', 'httpretty >= 0.8.10, < 1.0.0']
if sys.version_info < (2, 7):
tests_require.append('unittest2')
if sys.version_info < (3, 3):
tests_require.append('mock >= 1.3, < 2.0')
setup(
name='tinify',
version=__version__,
description='Tinify API client.',
author='Jacob Middag',
author_email='info@tinify.com',
license='MIT',
long_description='Python client for the Tinify API. Tinify compresses your images intelligently. Read more at https://tinify.com.',
url='https://tinify.com/developers',
packages=['tinify'],
package_data={
'': ['LICENSE', 'README.md'],
'tinify': ['data/cacert.pem'],
},
install_requires=install_require,
tests_require=tests_require,
extras_require={'test': tests_require},
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
),
)