forked from jazzband/django-two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.2 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
from distutils.core import setup
from setuptools import find_packages
import sys
extra = {}
if sys.version_info >= (3,):
extra["use_2to3"] = True
setup(
name="django-two-factor-auth",
version="0.3.4+cb.14",
author="Bouke Haarsma",
author_email="[email protected]",
packages=find_packages(
exclude=(
"demo",
"tests",
)
),
package_data={
"two_factor": [
"templates/two_factor/*.html",
],
},
url="http://github.com/chartbeat/django-two-factor-auth",
description="Complete Two-Factor Authentication for Django",
license="MIT",
long_description=open("README.rst").read(),
install_requires=["oath == 1.4.3"],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Topic :: Security",
"Topic :: System :: Systems Administration :: Authentication/Directory",
],
**extra
)