-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.31 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "guardpost"
dynamic = ["version"]
authors = [{ name = "Roberto Prevato", email = "roberto.prevato@gmail.com" }]
license = "MIT"
license-files = ["LICENSE"]
description = "Framework to handle authentication and authorization."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
keywords = ["authentication", "authorization", "identity", "claims", "strategy"]
dependencies = ["rodi>=2.0.0", "typing_extensions; python_version < '3.8'"]
[project.optional-dependencies]
jwt = ["PyJWT", "cryptography", "essentials>=1.1.8,<2.0"]
[tool.hatch.build.targets.sdist]
include = [
"guardpost/",
"README.md",
"LICENSE*",
"CHANGELOG*",
"pyproject.toml",
]
[tool.hatch.version]
path = "guardpost/__about__.py"
[project.urls]
"Homepage" = "https://github.com/Neoteroi/GuardPost"
"Bug Tracker" = "https://github.com/Neoteroi/GuardPost/issues"