-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (90 loc) · 2.56 KB
/
pyproject.toml
File metadata and controls
97 lines (90 loc) · 2.56 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[project]
name = "kinde-python-sdk"
version = "2.2.0"
authors = [
{ name = "Kinde Engineering", email = "engineering@kinde.com" },
]
description = "Connect your app to the Kinde platform"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"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 >=2026.1.4",
"PyYAML >=6.0.1, <7.0.0",
"cryptography >=43.0.1, <47.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]
fastapi = [
"fastapi >=0.110.0, <1.0.0",
"python-multipart >=0.0.6, <1.0.0",
"uvicorn >=0.37.0, <1.0.0",
]
flask = [
"flask >=3.0.0, <4.0.0",
]
dev = [
"pytest >=7.4.0",
"pytest-cov >=4.1.0",
"pytest-django >=4.5.2",
"mypy >=1.5.0",
"bandit >=1.7",
"pylint >=4.0.0; python_version >= '3.10'",
"pylint >=2.0, <4.0; python_version < '3.10'",
"pycodestyle >=2.0",
"pytest-asyncio >=0.26.0",
"pytest-timeout >=2.2.0",
"black >=24.3.0",
"flake8 >=6.1.0",
"isort >=5.12.0",
]
[project.urls]
"Homepage" = "https://github.com/kinde-oss/kinde-python-sdk"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["kinde_sdk", "kinde_fastapi", "kinde_flask"]
package-dir = {"" = "."}
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
"kinde_sdk" = ["**/*.py", "**/*.json", "**/*.yaml", "**/*.yml"]
"kinde_fastapi" = ["**/*.py", "**/*.json", "**/*.yaml", "**/*.yml"]
"kinde_flask" = ["**/*.py", "**/*.json", "**/*.yaml", "**/*.yml"]
[tool.poetry.dev-dependencies]
pytest = "^7.4.0"
pytest-cov = "^7.0.0"
coverage = ">=7.10.6"
pytest-django = "^4.5.2"
mypy = "^1.5.0"
bandit = "^1.7"
pylint = ">=4.0.0"
pycodestyle = "^2.0"
pytest-asyncio = "^0.26.0"
pytest-timeout = "^2.2.0"
black = "^26.0.0"
flake8 = "^7.0.0"
isort = "^8.0.0"