forked from xarg/django-stdimage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 769 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-stdimage',
version='0.2',
description='Django Standarized Image Field',
author='garcia.marc',
author_email='[email protected]',
url='http://code.google.com/p/django-stdimage/',
license='lgpl',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
],
packages=['stdimage'],
requires=['django (>=1.0)',],
)