-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
35 lines (31 loc) · 986 Bytes
/
pyproject.toml
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
[build-system]
#https://python-poetry.org/docs/pyproject
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pysafeguard"
description = "One Identity Safeguard Python Package"
version = "7.4.0"
readme = "README.md"
keywords = ["safeguard","oneidentity"]
repository = "https://github.com/OneIdentity/PySafeguard"
authors = [
"Tania Engel <[email protected]>",
]
maintainers = [
"Stephanie Zinn <[email protected]>"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/OneIdentity/PySafeguard/issues"
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.28.1"
#signalrcore is optional because it is only imported for SignalR functionality
signalrcore = { version="^0.9.5", optional = true }
[tool.poetry.extras]
signalr = ["signalrcore"]