-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
39 lines (36 loc) · 1.2 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
[tool.poetry]
name = "umapi-client"
version = "3.0.1"
description = "Client for the User Management API (UMAPI) from Adobe - see https://adobe.ly/2h1pHgV"
readme = "README.md"
authors = ["Andrew Dorton <[email protected]>", "Dan Brotsky", "Danimae Vossen", "Kevin Bhunut"]
maintainers = ["Andrew Dorton <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
]
license = "MIT"
homepage = "https://github.com/adobe-apiplatform/umapi-client.py/"
documentation = "https://adobe-apiplatform.github.io/umapi-client.py/"
packages = [
{ include = "umapi_client" }
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.25.1"
cryptography = "^38.0.4"
PyJWT = "2.4.0"
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest = "^6.2.3"
PyYAML = "^6.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"