-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
47 lines (35 loc) · 1.2 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
46
47
from setuptools import setup
setup(
name='Flask-Images',
version='3.0.2',
description='Dynamic image resizing for Flask.',
url='http://github.com/mikeboers/Flask-Images',
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
packages=['flask_images'],
install_requires=[
'Flask>=0.9',
'itsdangerous', # For Flask v0.9
# We need either PIL, or the newer Pillow. Since this may induce some
# dependency madness, I have created a module that should flatten that
# out. See: https://github.com/mikeboers/Flask-Images/pull/10 for more.
'PillowCase',
'six',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
tests_require=[
'nose>=1.0',
],
test_suite='nose.collector',
zip_safe=False,
)