-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
51 lines (48 loc) · 1.7 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from secureauth import get_version
setup(
name='django-secure-auth',
version=get_version(),
description='Secure authentication by TOTP, SMS, Codes & Question',
keywords='django secure auth protection totp sms codes question',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
author="GoTLiuM InSPiRiT",
author_email='[email protected]',
url='https://github.com/gotlium/django-secure-auth',
license='GPL v3',
packages=find_packages(exclude=['demo']),
include_package_data=True,
package_data={'secureauth': [
'templates/secureauth/*.html',
'templates/secureauth/codes_settings/*.html',
'templates/secureauth/phone_settings/*.html',
'templates/secureauth/question_settings/*.html',
'templates/secureauth/totp_settings/*.html',
'locale/*/LC_MESSAGES/*.po'
'static/secureauth/js/*.js'
]},
zip_safe=False,
install_requires=[
'pyotp>=1.3.1',
'httpagentparser>=1.5.0',
'django-tables2>=0.14.0',
'django-filter>=0.7',
'phonenumbers>=6.1.0',
'django-simple-captcha>=0.4.2',
'django-ipware>=0.0.8',
'slowaes==0.1a1',
'ipaddress>=1.0.6',
'django-phonenumber-field>=0.5',
]
)