ibm-watsonx-orchestrate-core 2.7.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,82 @@
1
+ # Byte-compiled Python files
2
+ *.py[cod]
3
+ __pycache__/
4
+
5
+ # C extensions
6
+ *.so
7
+
8
+ # Distribution / packaging
9
+ .Python
10
+ build/
11
+ develop-eggs/
12
+ dist/
13
+ downloads/
14
+ eggs/
15
+ .eggs/
16
+ lib/
17
+ lib64/
18
+ parts/
19
+ sdist/
20
+ var/
21
+ *.egg-info/
22
+ .installed.cfg
23
+ *.egg
24
+
25
+ # Virtual environments
26
+ venv/
27
+ ENV/
28
+ env/
29
+ .venv/
30
+ .env/
31
+
32
+ # Setuptools
33
+ *.lock
34
+ *.log
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .nox/
42
+ .coverage
43
+ *.cover
44
+ coverage.*
45
+ .cache
46
+ .pytest_cache/
47
+
48
+ # Jupyter Notebook
49
+ .ipynb_checkpoints
50
+
51
+ # pyenv
52
+ .python-version
53
+
54
+ # Editor / IDE-specific files
55
+ .vscode/
56
+ .idea/
57
+ *.swp
58
+ *~
59
+ *.sublime-workspace
60
+ .project
61
+
62
+ # SDK specific
63
+ sdk/python/ibm_watsonx_orchestrate/ibm_watsonx_orchestrate/__pycache__/
64
+ sdk/python/ibm_watsonx_orchestrate/ibm_watsonx_orchestrate/messages/__pycache__/
65
+ sdk/python/ibm_watsonx_orchestrate/ibm_watsonx_orchestrate/_wrappers/__pycache__/
66
+ sdk/python/ibm_watsonx_orchestrate/ibm_watsonx_orchestrate/utils/__pycache__/
67
+
68
+ # Build scripts
69
+ .DS_Store
70
+ *.bak
71
+ *.tmp
72
+
73
+ # Ignore local environment and configuration files
74
+ .env
75
+ .env.*
76
+ .idea/
77
+ .vscode/
78
+ coverage/
79
+
80
+ # Ignore local examples
81
+ examples/local/
82
+ examples/*/local/
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: ibm-watsonx-orchestrate-core
3
+ Version: 2.7.0
4
+ Summary: Core Shared Dependecies of the IBM watsonx Orchestrate ADK
5
+ Author-email: IBM <support@ibm.com>
6
+ License: MIT License
7
+ Requires-Python: <3.14,>=3.11
8
+ Requires-Dist: pydantic<3.0.0,>=2.10.3
9
+ Requires-Dist: pyyaml<7.0.0,>=6.0.2
@@ -0,0 +1,34 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "ibm-watsonx-orchestrate-core"
7
+ dynamic = ["version"]
8
+ description = "Core Shared Dependecies of the IBM watsonx Orchestrate ADK"
9
+ authors = [
10
+ { name = "IBM", email = "support@ibm.com" }
11
+ ]
12
+ #readme = { file = "README.md", content-type = 'text/markdown'}
13
+ license = {text = "MIT License"}
14
+ license-files = ["LICENSE"]
15
+ requires-python = ">=3.11, <3.14"
16
+
17
+ dependencies = [
18
+ "pydantic>=2.10.3,<3.0.0",
19
+ "pyyaml>=6.0.2,<7.0.0"
20
+ ]
21
+
22
+ [tool.hatch.build.targets.wheel]
23
+ packages = ["."]
24
+ package-data = true
25
+
26
+ [tool.hatch.build]
27
+ include = [
28
+ "./*"
29
+ ]
30
+ directory="../../dist"
31
+
32
+ [tool.hatch.version]
33
+ path = "../../src/ibm_watsonx_orchestrate/__init__.py"
34
+ validate-bump=false