forked from codingjoe/django-stdimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 836 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-stdimage',
version='0.5.10',
description='Django Standarized Image Field',
author='codingjoe',
url='https://github.com/codingjoe/django-stdimage',
author_email='[email protected]',
license='MIT License',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
packages=['stdimage'],
include_package_data=True,
requires=['django (>=1.2.7)', ],
)