-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathsetup.py
25 lines (24 loc) · 810 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
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name='django-stdimage',
version='0.4.0',
description='Django Standarized Image Field',
author='garcia.marc',
url='https://github.com/humanfromearth/django-stdimage',
author_email='[email protected]',
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'],
include_package_data=True,
requires=['django (>=1.0)',],
)