-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "django-kinde-auth"
version = "0.1.0"
description = "Reusable Django app for passwordless authentication via Kinde"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = ["django", "kinde", "auth", "oauth", "passwordless"]
classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 6.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"Django>=4.2",
"kinde-python-sdk>=1.2.1,<2",
]
[project.optional-dependencies]
dev = [
"build",
"twine",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["django_kinde_auth"]
[tool.setuptools.package-data]
django_kinde_auth = ["templates/**/*.html"]