-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
34 lines (32 loc) · 971 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
[tool.poetry]
name = "tapipy"
version = "1.6.3"
description = "Python lib for interacting with an instance of the Tapis API Framework"
license = "BSD-4-Clause"
authors = ["Joe Stubbs <[email protected]>"]
maintainers = ["Joe Stubbs <[email protected]>",
"Christian Garcia <[email protected]>"]
readme = "README.md"
repository = "https://github.com/tapis-project/tapipy"
include = ["tapipy/specs",
"tapipy/resources"]
[tool.poetry.dependencies]
python = "^3.7"
certifi = ">= 2020.11.8"
six = "^1.10"
python_dateutil = "^2.5.3"
setuptools = ">= 21.0.0"
urllib3 = "^1.26.5"
PyJWT = ">= 1.7.1"
openapi_core = "0.16.0"
openapi_spec_validator = "^0.5.0"
requests = "^2.20.0"
atomicwrites = "^1.4.0"
cryptography = ">= 3.3.2"
# jsonschema from 4.0.0 -> 4.3.0 slows tapipy import to 8+ seconds.
jsonschema = ">= 3.2.0"
pyyaml = ">= 5.4"
cloudpickle = ">= 1.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"