-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 752 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name='django-math-captcha',
version='0.1',
description='Simple, secure math captcha for django forms',
long_description=open('README.rst').read(),
author='Justin Quick',
author_email='justquick@gmail.com',
url='http://github.com/justquick/django-math-captcha',
packages=['math_captcha'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)