-
Notifications
You must be signed in to change notification settings - Fork 44
/
pyproject.toml
62 lines (51 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
61
62
[tool.poetry]
name = "codeflare-sdk"
version = "0.0.0-dev"
description = "Python SDK for codeflare client"
license = "Apache-2.0"
authors = [
"Michael Clifford <[email protected]>",
"Mustafa Eyceoz <[email protected]>",
"Abhishek Malvankar <[email protected]>",
"Atin Sood <[email protected]>",
]
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.9"
openshift-client = "1.0.18"
rich = ">=12.5,<14.0"
ray = {version = "2.35.0", extras = ["data", "default"]}
kubernetes = ">= 25.3.0, < 27"
cryptography = "43.0.3"
executing = "1.2.0"
pydantic = "< 2"
ipywidgets = "8.1.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "7.4.7"
sphinx-rtd-theme = "3.0.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = "7.4.0"
coverage = "7.6.4"
pytest-mock = "3.11.1"
pytest-timeout = "2.3.1"
jupyterlab = "4.2.5"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
]
markers = [
"kind",
"openshift",
"nvidia_gpu"
]
addopts = "--timeout=900"
testpaths = ["src/codeflare_sdk"]
collect_ignore = ["src/codeflare_sdk/common/utils/unit_test_support.py"]