-
Notifications
You must be signed in to change notification settings - Fork 28
/
pyproject.toml
43 lines (38 loc) · 1.07 KB
/
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
36
37
38
39
40
41
42
43
[tool.poetry]
name = "pysnc"
version = "1.1.10"
description = "Python SNC (REST) API"
authors = ["Matthew Gill <matthew.gill@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.7',
'Operating System :: OS Independent',
]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
requests-oauthlib = { version = ">=1.2.0", optional = true}
certifi = "^2024.7.4"
urllib3 = "^2.0.7"
[tool.poetry.extras]
oauth = ["requests-oauthlib"]
[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"
jake = "^3.0.0"
[tool.poetry.group.docs.dependencies]
sphinx = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"