forked from lewiscollard/django-flexible-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 903 Bytes
/
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
#!/usr/bin/env python
# coding: utf-8
from setuptools import find_packages, setup
setup(
name="django-flexible-images",
version="1.0.6",
url="https://github.com/lewiscollard/django-flexible-images",
author="Lewis Collard",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
description='A responsive image solution for Django.',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
],
install_requires=[
'django',
'sorl-thumbnail'
]
)