-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (99 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
115 lines (99 loc) · 2.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ibm-watsonx-orchestrate"
dynamic = ["version"]
description = "IBM watsonx.orchestrate SDK"
authors = [
{ name = "IBM", email = "support@ibm.com" }
]
#readme = { file = "README.md", content-type = 'text/markdown'}
license = {text = "MIT License"}
license-files = ["LICENSE"]
requires-python = ">=3.11, <3.14"
classifiers = []
dependencies = [
"certifi>=2024.8.30",
"charset_normalizer>=2",
"click>=8.0.0,<8.2.0",
"docstring-parser>=0.16,<1.0",
"httpx>=0.28.1,<1.0.0",
"ibm-cloud-sdk-core>=3.24.2",
"jsonref==1.1.0",
"langchain-core~=1.2.4",
"packaging>=24.2",
"pydantic>=2.10.3,<3.0.0",
"pyjwt>=2.10.1,<3.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.2,<7.0.0",
"requests>=2.32.0",
"rich>=13.9.4,<14.0.0",
"typer>=0.15.1,<1.0.0",
"urllib3>=2.2.3",
"pytz>=2025.2",
"redis>=6.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.2",
"pytest-cov==6.0.0",
"snapshottest==1.0.0a1",
"pytest-mock==3.14.0",
"pytest-asyncio==1.3.0",
"coverage[toml]>=6.5",
"black~=22.3.0",
"pylint~=2.16.4",
]
agentops = [
"ibm_watsonx_orchestrate_evaluation_framework>=1.2.6",
]
[tool.pytest.ini_options]
pythonpath = "src"
[tool.hatch.envs.default]
dependencies = [
"pkg[dev]",
"pkg[agentops]"
]
detached = true
[tool.hatch.version]
path = "src/ibm_watsonx_orchestrate/__init__.py"
validate-bump=false
[tool.hatch.build.targets.wheel]
packages = ["src/ibm_watsonx_orchestrate"]
[tool.hatch.build]
include = [
"src/*"
]
[project.scripts]
orchestrate = "ibm_watsonx_orchestrate.cli.main:app"
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}"
cov-report = [
"- coverage combine",
"coverage report",
]
cov = [
"test-cov",
"cov-report",
]
[tool.coverage.run]
omit = [
"*/__init__.py",
"tests/*"
]
[tool.hatch.envs.test]
dependencies = [
"pkg[dev]",
"pkg[agentops]"
]
[[tool.hatch.envs.test.matrix]]
python = ["3.11", "3.12", "3.13"]
[tool.coverage.report]
show_missing=true
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]