-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
35 lines (26 loc) · 843 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
31
32
33
34
# vim: tabstop=4 expandtab autoindent shiftwidth=4 fileencoding=utf-8
from setuptools import setup, find_packages
NAME = 'mezzanine-captcha'
VERSION = '0.0.5'
DESCR = """\
Captcha field for Mezzanine. A hack which can break your fields if you're not careful.
Use with extreme care. Can screw up your field types if you have other apps like this.
Do not use unless you know what you're doing.
"""
AUTHOR = 'Markus Törnqvist'
AUTHOR_EMAIL = 'mjt@fadconsulting.com'
URL = 'https://github.com/mjtorn/mezzanine-captcha'
setup(
name=NAME,
version=VERSION,
description=DESCR,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools', 'django-simple-captcha>=0.3.4', 'mezzanine']
)
# EOF