forked from django-otp/django-otp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (35 loc) · 1.15 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·40 lines (35 loc) · 1.15 KB
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name='django-otp',
version='1.0.6',
description="A pluggable framework for adding two-factor authentication to Django using one-time passwords.",
license='BSD',
author="Peter Sagerson",
author_email='psagers@ignorare.net',
url='https://github.com/django-otp/django-otp',
project_urls={
"Documentation": 'https://django-otp-official.readthedocs.io/',
"Source": 'https://github.com/django-otp/django-otp',
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
package_dir={'': 'src'},
packages=find_packages(where='src'),
include_package_data=True,
zip_safe=False,
install_requires=[
'django >= 2.2',
],
extras_require={
'qrcode': ['qrcode'],
},
)