-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.23 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
[project]
name = "ConnectKit-FastAPI-Authentication"
version = "1.6.0"
description = "User JWT Authentication for FastAPI services"
authors = [
{ name = "RealMetamorph", email = "andr.timchuk@yandex.ru" },
]
keywords = ["connectkit", "authentication", "jwt", "cookie", "otp", "totp", "fastapi"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Framework :: FastAPI",
"License :: OSI Approved :: MIT License"
]
requires-python = ">=3.9"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"pydantic>=2.5.3",
"pydantic-settings>=2.1.0",
"fastapi>=0.110.0",
"PyJWT>=2.8.0",
"argon2-cffi>=23.1.0",
"pyotp>=2.9.0",
"ConnectKit-Database[asyncpg]>=1.3.2",
"ietfparse>=1.9.0",
]
[project.urls]
Homepage = "https://github.com/mtuciru/ConnectKit-FastAPIAuthentication"
Repository = "https://github.com/mtuciru/ConnectKit-FastAPIAuthentication.git"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.scripts]
tests = "echo 'tests will be here'"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.23.3",
]