forked from project-codeflare/codeflare-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (82 loc) · 2.47 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (82 loc) · 2.47 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "codeflare-sdk"
version = "0.35.0"
[tool.poetry]
name = "codeflare-sdk"
version = "0.35.0"
description = "Python SDK for codeflare client"
license = "Apache-2.0"
# Exclude vendored tests, examples, and build files from the package
exclude = [
"src/codeflare_sdk/vendored/python_client_test",
"src/codeflare_sdk/vendored/examples",
"src/codeflare_sdk/vendored/pyproject.toml",
"src/codeflare_sdk/vendored/poetry.lock",
"src/codeflare_sdk/vendored/README.md"
]
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.11"
openshift-client = "1.0.18"
rich = ">=12.5,<15.0"
ray = {version = "2.52.1", extras = ["data", "default"]}
kubernetes = ">= 27.2.0"
cryptography = "46.0.5"
executing = "2.2.1"
pydantic = ">= 2.10.6"
ipywidgets = "8.1.2"
kube-authkit = ">=0.4.0"
[[tool.poetry.source]]
name = "pypi"
[[tool.poetry.source]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
[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 = "9.0.2"
coverage = "7.13.1"
pytest-mock = "3.15.1"
pytest-timeout = "2.3.1"
jupyterlab = "4.5.0"
selenium = "4.41.0.202601270013"
webdriver-manager = "4.0.2"
[tool.poetry.group.dev.dependencies]
diff-cover = "^9.6.0"
black = "^25.11.0"
pre-commit = "^4.5.0"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:pkg_resources",
"ignore:pkg_resources is deprecated as an API:DeprecationWarning",
]
markers = [
"kind",
"openshift",
"nvidia_gpu",
"smoke: Smoke tests - quick validation tests",
"tier1: Tier1 tests - standard test suite",
"pre_upgrade: Tests to run before upgrade",
"post_upgrade: Tests to run after upgrade",
"ui: UI tests requiring browser automation"
]
addopts = "--timeout=900 --ignore=src/codeflare_sdk/vendored"
testpaths = ["src/codeflare_sdk"]
collect_ignore = ["src/codeflare_sdk/common/utils/unit_test_support.py"]
[build-system]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"