-
Notifications
You must be signed in to change notification settings - Fork 40
/
setup.py
30 lines (27 loc) · 998 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
30
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='django-imagefit',
version='0.8.1',
long_description_content_type='text/markdown',
description='Render an optimized version of your original image on display. Ability to resize and crop.',
long_description=open('README.md').read(),
author='Vincent Agnano',
author_email='[email protected]',
url='http://github.com/vinyll/django-imagefit',
license='BSD',
packages=find_packages(),
zip_safe=False,
install_requires=['django-appconf', 'Pillow', 'requests'],
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 3.3',
'Topic :: Utilities',
]
)