forked from project-codeflare/codeflare-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (40 loc) · 1.18 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
44
45
46
47
48
49
50
51
[tool.poetry]
name = "codeflare-sdk"
version = "0.0.0-dev"
description = "Python SDK for codeflare client"
license = "Apache-2.0"
authors = [
"Michael Clifford <mcliffor@redhat.com>",
"Mustafa Eyceoz <meyceoz@redhat.com>",
"Abhishek Malvankar <asmalvan@us.ibm.com>",
"Atin Sood <asood@us.ibm.com>",
]
readme = 'README.md'
repository = "https://github.com/project-codeflare/codeflare-sdk"
homepage = "https://github.com/project-codeflare/codeflare-sdk"
keywords = ['codeflare', 'python', 'sdk', 'client', 'batch', 'scale']
[tool.poetry.dependencies]
python = "^3.8"
openshift-client = "1.0.18"
rich = "^12.5"
ray = {version = "2.7.0", extras = ["default"]}
kubernetes = ">= 25.3.0, < 27"
codeflare-torchx = "0.6.0.dev1"
cryptography = "40.0.2"
executing = "1.2.0"
pydantic = "< 2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pdoc3 = "0.10.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "7.4.0"
coverage = "7.2.7"
pytest-mock = "3.11.1"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
]