This project is a SDK for integrating ML pipeline to Nubison.
# Install using uv
uv sync
# Or install using pip
pip install -e .# Install dependencies
uv sync
# Install with development dependencies
uv pip install -e ".[dev]"# Run all tests
pytest
# Run tests with tox (multiple Python versions)
toxfrom nubison_pipeline import NubisonPipeline
# Initialize the pipeline
pipeline = NubisonPipeline(name="my-pipeline")
# Run the pipeline
result = pipeline.run(data_path="path/to/data")
print(result)- This project uses
uvfor dependency management - Python 3.9 or higher is required