forked from miohtama/django-twofactor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 798 Bytes
/
setup.py
File metadata and controls
26 lines (21 loc) · 798 Bytes
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
template_patterns = ['templates/*.html',
'templates/*/*.html',
'templates/*/*/*.html',
]
package_name = 'django_twofactor'
packages = ['django_twofactor',
'django_twofactor.migrations']
long_description = open("README.mdown").read() + "\n"
setup(name='django_twofactor',
version='0.3',
description='TOTP and HOTP two-factor authentication for Django',
long_description=long_description,
author='Mike Tigas, Rainer Koirikivi, LocalBitcoins Oy',
url='https://github.com/LocalBitcoins/django-twofactor',
license="MIT",
packages=packages,
package_data={
package_name: template_patterns + ['locale/*/LC_MESSAGES/*.mo']
},
)