-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (48 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
46
47
48
49
50
51
52
53
54
55
# coding: utf-8
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
__version__ = None
exec(open('tc_multidir/_version.py').read())
setup(
name='thumbor_multidir',
version=__version__,
description="Thumbor file loader for multiple paths",
keywords='imaging face detection feature thumbor file loader',
author='Benn Eichhorn',
author_email='[email protected]',
url='https://github.com/benneic/thumbor_multidir',
license='MIT',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=[
'python-dateutil',
'six',
'thumbor>=6.0.0,<7',
],
extras_require={
"tests": [
"mock>=1.0.1,<3.0.0",
"nose",
"nose-focus",
"colorama",
"numpy",
"flake8",
"thumbor<7.0.0",
"preggy>=1.3.0",
"yanc>=0.3.3",
]
},
long_description=readme(),
)