forked from kinde-oss/kinde-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (69 loc) · 2 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
72
73
74
75
[project]
name = "kinde-python-flask-sdk"
version = "0.9.12"
authors = [
{ name = "Jared Weisinger", email = "daniel@jaredweisinger.com" },
{ name = "Eanix.net", email = "daniel@eanix.net" },
{ name = "Kinde Engineering", email = "engineering@kinde.com" },
]
description = "Connect your app to the Kinde platform"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 5 - Development/Beta",
"MIT",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"urllib3 >=2.2.0, <3.0",
"python-dateutil >=2.9.0, <3.0",
"Authlib >=1.3.0, <2.0",
"pyjwt >=2.10.0, <3.0",
"requests >=2.32.2, <3.0",
"typing-extensions >=4.11.0, <5.0",
"frozendict >=2.4.3, <3.0",
"certifi >=2024.2.2, <2025.0.0",
"PyYAML >=6.0.1, <7.0.0",
"cryptography >=41.0.0, <42.0.0",
"python-dotenv >=1.0.0, <2.0.0",
"itsdangerous >=2.2.0, <3.0.0",
"nest-asyncio >=1.5.8, <2.0.0",
"httpx >=0.25.0, <0.29.0",
"pydantic >=2.0.0, <3.0.0",
]
[project.optional-dependencies]
flask = [
"flask >=3.0.0, <4.0.0",
]
[project.urls]
"Homepage" = "https://github.com/Eanix-Net/kinde-python-flask-sdk"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["kinde_sdk"]
package-dir = {"" = "."}
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
"kinde_sdk" = ["**/*.py", "**/*.json", "**/*.yaml", "**/*.yml"]
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-django = "^4.5.2"
mypy = "^1.5.0"
bandit = "^1.7"
pylint = "^2.0"
pycodestyle = "^2.0"
pytest-asyncio = "^0.21.1"
pytest-timeout = "^2.2.0"
black = "^23.7.0"
flake8 = "^6.1.0"
isort = "^5.12.0"