-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.42 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
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "pysafeguard"
description = "One Identity Safeguard Python Package"
version = "7.4.0"
readme = { file = "README.md", content-type = "text/markdown" }
keywords = ["safeguard", "oneidentity"]
license = "Apache"
repository = "https://github.com/OneIdentity/PySafeguard"
authors = [
{ name = "Tania Engel", email = "Tania.Engel@oneidentity.com" }
]
maintainers = [
{ name = "Stephanie Zinn", email = "Stephanie.Zinn@oneidentity.com" }
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"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",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
dependencies = [
"requests >= 2.32",
"truststore >= 0.10",
"typing_extensions >= 4.15; python_version < '3.11'",
]
[project.optional-dependencies]
async = [
"aiohttp >= 3.13",
]
signalr = [
"signalrcore >= 0.9",
]
dev = [
"types-requests >= 2.32",
"mypy >= 1.19",
"ruff >= 0.14",
]
[project.urls]
"Bug Tracker" = "https://github.com/OneIdentity/PySafeguard/issues"