-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.33 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
[tool.poetry]
name = "pysnc"
version = "1.2.1"
description = "Python SNC (REST) API"
authors = [
"Matthew Gill <matthew.gill@servicenow.com>",
"Patrice Bechard <patrice.bechard@servicenow.com>",
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ServiceNow/PySNC"
documentation = "https://servicenow.github.io/PySNC/"
keywords = ["servicenow", "snc"]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.5"
requests-oauthlib = { version = "^2.0.0", optional = true }
certifi = "^2026.1.4"
urllib3 = "^2.6.3"
# async deps
asyncio = { version = "^4.0.0", optional = true }
httpx = { version = "^0.28.1", optional = true }
[tool.poetry.extras]
oauth = ["requests-oauthlib"]
asyncio = ["asyncio", "httpx"]
[tool.poetry.group.dev.dependencies]
requests-oauthlib = ">=1.2.0"
pytest = "^7.3.1"
python-dotenv = "^1.0.0"
mypy = "^1.2.0"
types-requests = "^2.29.0.0"
types-oauthlib = "^3.2.0.7"
cyclonedx-bom = "^7.2.1"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"