kailash 0.1.0__tar.gz → 0.1.1__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.
Files changed (78) hide show
  1. kailash-0.1.1/MANIFEST.in +66 -0
  2. {kailash-0.1.0/src/kailash.egg-info → kailash-0.1.1}/PKG-INFO +7 -5
  3. {kailash-0.1.0 → kailash-0.1.1}/README.md +5 -4
  4. {kailash-0.1.0 → kailash-0.1.1}/pyproject.toml +2 -1
  5. {kailash-0.1.0 → kailash-0.1.1}/setup.py +1 -1
  6. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/__init__.py +1 -1
  7. {kailash-0.1.0 → kailash-0.1.1/src/kailash.egg-info}/PKG-INFO +7 -5
  8. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/SOURCES.txt +2 -2
  9. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/requires.txt +1 -0
  10. kailash-0.1.0/tests/test_ci_setup.py +0 -55
  11. {kailash-0.1.0 → kailash-0.1.1}/LICENSE +0 -0
  12. {kailash-0.1.0 → kailash-0.1.1}/setup.cfg +0 -0
  13. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/__main__.py +0 -0
  14. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/cli/__init__.py +0 -0
  15. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/cli/commands.py +0 -0
  16. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/manifest.py +0 -0
  17. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/__init__.py +0 -0
  18. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/ai/__init__.py +0 -0
  19. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/ai/agents.py +0 -0
  20. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/ai/models.py +0 -0
  21. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/__init__.py +0 -0
  22. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/auth.py +0 -0
  23. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/graphql.py +0 -0
  24. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/http.py +0 -0
  25. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/rate_limiting.py +0 -0
  26. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/api/rest.py +0 -0
  27. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/base.py +0 -0
  28. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/base_async.py +0 -0
  29. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/code/__init__.py +0 -0
  30. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/code/python.py +0 -0
  31. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/__init__.py +0 -0
  32. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/readers.py +0 -0
  33. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/sharepoint_graph.py +0 -0
  34. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/sql.py +0 -0
  35. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/streaming.py +0 -0
  36. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/vector_db.py +0 -0
  37. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/data/writers.py +0 -0
  38. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/logic/__init__.py +0 -0
  39. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/logic/async_operations.py +0 -0
  40. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/logic/operations.py +0 -0
  41. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/transform/__init__.py +0 -0
  42. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/nodes/transform/processors.py +0 -0
  43. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/__init__.py +0 -0
  44. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/async_local.py +0 -0
  45. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/docker.py +0 -0
  46. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/local.py +0 -0
  47. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/parallel.py +0 -0
  48. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/runner.py +0 -0
  49. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/runtime/testing.py +0 -0
  50. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/sdk_exceptions.py +0 -0
  51. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/__init__.py +0 -0
  52. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/manager.py +0 -0
  53. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/metrics_collector.py +0 -0
  54. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/models.py +0 -0
  55. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/storage/__init__.py +0 -0
  56. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/storage/base.py +0 -0
  57. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/storage/database.py +0 -0
  58. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/tracking/storage/filesystem.py +0 -0
  59. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/utils/__init__.py +0 -0
  60. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/utils/export.py +0 -0
  61. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/utils/templates.py +0 -0
  62. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/visualization/__init__.py +0 -0
  63. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/visualization/api.py +0 -0
  64. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/visualization/dashboard.py +0 -0
  65. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/visualization/performance.py +0 -0
  66. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/visualization/reports.py +0 -0
  67. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/__init__.py +0 -0
  68. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/builder.py +0 -0
  69. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/graph.py +0 -0
  70. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/mermaid_visualizer.py +0 -0
  71. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/mock_registry.py +0 -0
  72. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/runner.py +0 -0
  73. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/state.py +0 -0
  74. {kailash-0.1.0 → kailash-0.1.1}/src/kailash/workflow/visualization.py +0 -0
  75. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/dependency_links.txt +0 -0
  76. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/entry_points.txt +0 -0
  77. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/not-zip-safe +0 -0
  78. {kailash-0.1.0 → kailash-0.1.1}/src/kailash.egg-info/top_level.txt +0 -0
@@ -0,0 +1,66 @@
1
+ # Include important files
2
+ include README.md
3
+ include LICENSE
4
+ include pyproject.toml
5
+ include setup.py
6
+ include setup.cfg
7
+
8
+ # Include source code
9
+ recursive-include src *.py
10
+ recursive-include src *.pyi
11
+ recursive-include src py.typed
12
+
13
+ # Exclude all non-essential directories
14
+ prune tests
15
+ prune docs
16
+ prune examples
17
+ prune guide
18
+ prune data
19
+ prune outputs
20
+ prune workflow_executions
21
+
22
+ # Exclude Sphinx build artifacts
23
+ prune docs/_build
24
+ prune guide/_build
25
+
26
+ # Exclude internal documentation and development files
27
+ exclude CLAUDE.md
28
+ exclude CONTRIBUTING.md
29
+ exclude RELEASE_ANNOUNCEMENT.md
30
+ exclude CHANGELOG.md
31
+ exclude pytest.ini
32
+ exclude Makefile
33
+ exclude workflow_changes_summary.md
34
+
35
+ # Exclude build artifacts
36
+ global-exclude __pycache__
37
+ global-exclude *.py[co]
38
+ global-exclude .DS_Store
39
+ global-exclude *.so
40
+ global-exclude *.dylib
41
+ global-exclude *.dll
42
+
43
+ # Exclude version control
44
+ prune .git
45
+ prune .github
46
+ exclude .gitignore
47
+ exclude .gitattributes
48
+
49
+ # Exclude development files
50
+ exclude .pre-commit-config.yaml
51
+ exclude uv.lock
52
+ prune .venv
53
+ prune .pytest_cache
54
+ prune .ruff_cache
55
+ prune .mypy_cache
56
+
57
+ # Exclude temporary files
58
+ prune data/tasks
59
+ prune data/task_storage
60
+ prune examples/data/*/tracking
61
+ prune examples/data/*/metrics
62
+ prune examples/data/*/runs
63
+ prune examples/data/*/tasks
64
+ prune examples/outputs
65
+ prune outputs
66
+ prune workflow_executions
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Python SDK for the Kailash container-node architecture
5
5
  Home-page: https://github.com/integrum/kailash-python-sdk
6
6
  Author: Integrum
@@ -45,6 +45,7 @@ Requires-Dist: psutil>=7.0.0
45
45
  Requires-Dist: fastapi[all]>=0.115.12
46
46
  Requires-Dist: pytest-asyncio>=1.0.0
47
47
  Requires-Dist: pre-commit>=4.2.0
48
+ Requires-Dist: twine>=6.1.0
48
49
  Provides-Extra: dev
49
50
  Requires-Dist: pytest>=7.0; extra == "dev"
50
51
  Requires-Dist: pytest-cov>=3.0; extra == "dev"
@@ -59,7 +60,9 @@ Dynamic: requires-python
59
60
  # Kailash Python SDK
60
61
 
61
62
  <p align="center">
62
- <img src="https://img.shields.io/badge/python-3.11+-blue.svg" alt="Python 3.8+">
63
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
64
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
65
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/dm/kailash.svg" alt="Downloads"></a>
63
66
  <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
64
67
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
65
68
  <img src="https://img.shields.io/badge/tests-544%20passing-brightgreen.svg" alt="Tests: 544 passing">
@@ -103,7 +106,7 @@ The Kailash Python SDK is designed for:
103
106
  curl -LsSf https://astral.sh/uv/install.sh | sh
104
107
 
105
108
  # For users: Install from PyPI
106
- uv pip install kailash
109
+ pip install kailash
107
110
 
108
111
  # For developers: Clone and sync
109
112
  git clone https://github.com/integrum/kailash-python-sdk.git
@@ -200,8 +203,7 @@ results, run_id = runtime.execute(workflow, inputs=inputs)
200
203
  | Resource | Description |
201
204
  |----------|-------------|
202
205
  | 📖 [User Guide](docs/user-guide.md) | Comprehensive guide for using the SDK |
203
- | 🏛️ [Architecture](docs/adr/) | Architecture Decision Records |
204
- | 📋 [API Reference](docs/api/) | Detailed API documentation |
206
+ | 📋 [API Reference](docs/) | Detailed API documentation |
205
207
  | 🌐 [API Integration Guide](examples/API_INTEGRATION_README.md) | Complete API integration documentation |
206
208
  | 🎓 [Examples](examples/) | Working examples and tutorials |
207
209
  | 🤝 [Contributing](CONTRIBUTING.md) | Contribution guidelines |
@@ -1,7 +1,9 @@
1
1
  # Kailash Python SDK
2
2
 
3
3
  <p align="center">
4
- <img src="https://img.shields.io/badge/python-3.11+-blue.svg" alt="Python 3.8+">
4
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
5
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
6
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/dm/kailash.svg" alt="Downloads"></a>
5
7
  <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
6
8
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
7
9
  <img src="https://img.shields.io/badge/tests-544%20passing-brightgreen.svg" alt="Tests: 544 passing">
@@ -45,7 +47,7 @@ The Kailash Python SDK is designed for:
45
47
  curl -LsSf https://astral.sh/uv/install.sh | sh
46
48
 
47
49
  # For users: Install from PyPI
48
- uv pip install kailash
50
+ pip install kailash
49
51
 
50
52
  # For developers: Clone and sync
51
53
  git clone https://github.com/integrum/kailash-python-sdk.git
@@ -142,8 +144,7 @@ results, run_id = runtime.execute(workflow, inputs=inputs)
142
144
  | Resource | Description |
143
145
  |----------|-------------|
144
146
  | 📖 [User Guide](docs/user-guide.md) | Comprehensive guide for using the SDK |
145
- | 🏛️ [Architecture](docs/adr/) | Architecture Decision Records |
146
- | 📋 [API Reference](docs/api/) | Detailed API documentation |
147
+ | 📋 [API Reference](docs/) | Detailed API documentation |
147
148
  | 🌐 [API Integration Guide](examples/API_INTEGRATION_README.md) | Complete API integration documentation |
148
149
  | 🎓 [Examples](examples/) | Working examples and tutorials |
149
150
  | 🤝 [Contributing](CONTRIBUTING.md) | Contribution guidelines |
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kailash"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Python SDK for the Kailash container-node architecture"
9
9
  authors = [
10
10
  {name = "Integrum", email = "info@integrum.com"}
@@ -49,6 +49,7 @@ dependencies = [
49
49
  "fastapi[all]>=0.115.12",
50
50
  "pytest-asyncio>=1.0.0",
51
51
  "pre-commit>=4.2.0",
52
+ "twine>=6.1.0",
52
53
  ]
53
54
 
54
55
  [project.optional-dependencies]
@@ -13,7 +13,7 @@ with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
13
13
  # Package configuration
14
14
  setup(
15
15
  name="kailash",
16
- version="0.1.0",
16
+ version="0.1.1",
17
17
  author="Integrum",
18
18
  author_email="info@integrum.com",
19
19
  description="Python SDK for the Kailash container-node architecture",
@@ -15,7 +15,7 @@ from kailash.workflow.visualization import WorkflowVisualizer
15
15
  # For backward compatibility
16
16
  WorkflowGraph = Workflow
17
17
 
18
- __version__ = "0.1.0"
18
+ __version__ = "0.1.1"
19
19
 
20
20
  __all__ = [
21
21
  "Workflow",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kailash
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Python SDK for the Kailash container-node architecture
5
5
  Home-page: https://github.com/integrum/kailash-python-sdk
6
6
  Author: Integrum
@@ -45,6 +45,7 @@ Requires-Dist: psutil>=7.0.0
45
45
  Requires-Dist: fastapi[all]>=0.115.12
46
46
  Requires-Dist: pytest-asyncio>=1.0.0
47
47
  Requires-Dist: pre-commit>=4.2.0
48
+ Requires-Dist: twine>=6.1.0
48
49
  Provides-Extra: dev
49
50
  Requires-Dist: pytest>=7.0; extra == "dev"
50
51
  Requires-Dist: pytest-cov>=3.0; extra == "dev"
@@ -59,7 +60,9 @@ Dynamic: requires-python
59
60
  # Kailash Python SDK
60
61
 
61
62
  <p align="center">
62
- <img src="https://img.shields.io/badge/python-3.11+-blue.svg" alt="Python 3.8+">
63
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/v/kailash.svg" alt="PyPI version"></a>
64
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/pyversions/kailash.svg" alt="Python versions"></a>
65
+ <a href="https://pypi.org/project/kailash/"><img src="https://img.shields.io/pypi/dm/kailash.svg" alt="Downloads"></a>
63
66
  <img src="https://img.shields.io/badge/license-MIT-green.svg" alt="MIT License">
64
67
  <img src="https://img.shields.io/badge/code%20style-black-000000.svg" alt="Code style: black">
65
68
  <img src="https://img.shields.io/badge/tests-544%20passing-brightgreen.svg" alt="Tests: 544 passing">
@@ -103,7 +106,7 @@ The Kailash Python SDK is designed for:
103
106
  curl -LsSf https://astral.sh/uv/install.sh | sh
104
107
 
105
108
  # For users: Install from PyPI
106
- uv pip install kailash
109
+ pip install kailash
107
110
 
108
111
  # For developers: Clone and sync
109
112
  git clone https://github.com/integrum/kailash-python-sdk.git
@@ -200,8 +203,7 @@ results, run_id = runtime.execute(workflow, inputs=inputs)
200
203
  | Resource | Description |
201
204
  |----------|-------------|
202
205
  | 📖 [User Guide](docs/user-guide.md) | Comprehensive guide for using the SDK |
203
- | 🏛️ [Architecture](docs/adr/) | Architecture Decision Records |
204
- | 📋 [API Reference](docs/api/) | Detailed API documentation |
206
+ | 📋 [API Reference](docs/) | Detailed API documentation |
205
207
  | 🌐 [API Integration Guide](examples/API_INTEGRATION_README.md) | Complete API integration documentation |
206
208
  | 🎓 [Examples](examples/) | Working examples and tutorials |
207
209
  | 🤝 [Contributing](CONTRIBUTING.md) | Contribution guidelines |
@@ -1,4 +1,5 @@
1
1
  LICENSE
2
+ MANIFEST.in
2
3
  README.md
3
4
  pyproject.toml
4
5
  setup.cfg
@@ -72,5 +73,4 @@ src/kailash/workflow/mermaid_visualizer.py
72
73
  src/kailash/workflow/mock_registry.py
73
74
  src/kailash/workflow/runner.py
74
75
  src/kailash/workflow/state.py
75
- src/kailash/workflow/visualization.py
76
- tests/test_ci_setup.py
76
+ src/kailash/workflow/visualization.py
@@ -27,6 +27,7 @@ psutil>=7.0.0
27
27
  fastapi[all]>=0.115.12
28
28
  pytest-asyncio>=1.0.0
29
29
  pre-commit>=4.2.0
30
+ twine>=6.1.0
30
31
 
31
32
  [dev]
32
33
  pytest>=7.0
@@ -1,55 +0,0 @@
1
- """Simple test file to verify CI setup is working."""
2
-
3
- import pytest
4
-
5
-
6
- def test_truth():
7
- """Simple test that will always pass."""
8
- assert True, "This should always pass"
9
-
10
-
11
- def test_basic_math():
12
- """Test basic math operations."""
13
- assert 2 + 2 == 4, "Basic addition should work"
14
- assert 5 - 3 == 2, "Basic subtraction should work"
15
- assert 3 * 4 == 12, "Basic multiplication should work"
16
-
17
-
18
- @pytest.mark.parametrize(
19
- "input_val,expected",
20
- [
21
- (1, 1),
22
- (2, 4),
23
- (3, 9),
24
- (4, 16),
25
- (5, 25),
26
- ],
27
- )
28
- def test_square_function(input_val, expected):
29
- """Test a simple square function with various inputs."""
30
-
31
- def square(x):
32
- return x * x
33
-
34
- result = square(input_val)
35
- assert (
36
- result == expected
37
- ), f"Square of {input_val} should be {expected}, got {result}"
38
-
39
-
40
- class TestSimpleClass:
41
- """Test class with setup and multiple test methods."""
42
-
43
- def setup_method(self):
44
- """Setup method called before each test."""
45
- self.value = 10
46
-
47
- def test_increment(self):
48
- """Test incrementing a value."""
49
- self.value += 1
50
- assert self.value == 11
51
-
52
- def test_decrement(self):
53
- """Test decrementing a value."""
54
- self.value -= 1
55
- assert self.value == 9
File without changes
File without changes
File without changes
File without changes