-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (69 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
71 lines (69 loc) · 1.78 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import pathlib
from setuptools import (
setup,
find_packages
)
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(
name="two_fast_auth",
version="1.1.0",
packages=find_packages(
include=[
"two_fast_auth",
"two_fast_auth.*"
]
),
install_requires=[
"fastapi",
"pyotp",
"qrcode",
"pillow"
],
extras_require={
"dev": [
"black",
"fastapi-users",
"flake8",
"httpx",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-mock",
"sqlalchemy"
]
},
python_requires=">=3.10",
author="Renzo Franceschini",
author_email="rennf93@gmail.com",
description="FastAPI 2-Factor Authentication Middleware",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/rennf93/two-fast-auth",
# project_urls={
# "Documentation": "https://github.com/rennf93/two-fast-auth/blob/main/README.md",
# "Issue Tracker": "https://github.com/rennf93/two-fast-auth/issues",
# },
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Python Modules",
],
include_package_data=True,
package_data={
"two_fast_auth": ["py.typed"],
},
license="MIT",
keywords=[
"fastapi",
"security",
"2fa",
"authentication",
"middleware"
],
)