-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
37 lines (31 loc) · 1.12 KB
/
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
35
#!/usr/bin/env python
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '0.1.0'
setup(name='django-lockout',
version=version,
description="cache-based Django app that locks out users after too "
"many failed login attempts.",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',],
keywords='django cache security',
author='Brian Jay Stanley',
url='https://github.com/brianjaystanley/django-lockout',
author_email='[email protected]',
license='MIT',
packages=['lockout'],
install_requires=['django',],
)