forked from mbi/django-simple-captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (26 loc) · 865 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
from setuptools import setup, find_packages
setup(
name='django-simple-captcha',
version='0.3.5',
description='A very simple, yet powerful, Django captcha application',
author='Marco Bonetti',
author_email='[email protected]',
url='https://github.com/mbi/django-simple-captcha',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Internet :: WWW/HTTP',
'Framework :: Django',
],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
requires=['PIL (>=1.1.6)']
)