Metadata-Version: 2.1
Name: mxm-scaffold
Version: 0.18.5.dev62339673
Summary: Client library Created by the Merantix Momentum AI Platform Team
Home-page: https://merantix-momentum.com
License: MIT
Author: Merantix Momentum GmbH
Requires-Python: >=3.9.0,<3.13
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Provides-Extra: all
Provides-Extra: data
Provides-Extra: flyte
Provides-Extra: torch
Provides-Extra: wandb
Requires-Dist: GitPython (>=3.1.26,<4.0.0)
Requires-Dist: PyJWT (>=2.4.0)
Requires-Dist: botocore (>=1.36.3)
Requires-Dist: cookiecutter (>=2.1.1,<3.0.0) ; extra == "flyte" or extra == "all"
Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "flyte" or extra == "all"
Requires-Dist: flatten-dict
Requires-Dist: flytekit (>=1.14.3,<2.0.0) ; extra == "flyte" or extra == "all"
Requires-Dist: flytekitplugins-omegaconf ; extra == "flyte" or extra == "all"
Requires-Dist: flytekitplugins-pod ; extra == "flyte" or extra == "all"
Requires-Dist: fsspec (>=2024.12.0) ; extra == "data"
Requires-Dist: gcsfs (>=2024.12.0) ; extra == "data"
Requires-Dist: hydra-core (>=1.0.4,<2.0.0)
Requires-Dist: jsonpickle ; extra == "flyte" or extra == "all"
Requires-Dist: marshmallow-enum (>=1.5.1,<2.0.0) ; extra == "flyte" or extra == "all"
Requires-Dist: numpy (<2.0.0) ; python_version < "3.10"
Requires-Dist: numpy ; python_version >= "3.10" and python_version < "4.0"
Requires-Dist: nvidia-ml-py
Requires-Dist: psutil
Requires-Dist: pyprojroot (>=0.3.0,<0.4.0) ; extra == "flyte" or extra == "all"
Requires-Dist: pytorch-lightning (>=1.9,<2.5) ; extra == "torch" or extra == "all"
Requires-Dist: random-name
Requires-Dist: torch (>=1.13.0) ; extra == "torch" or extra == "all"
Requires-Dist: tqdm
Requires-Dist: urllib3 (>=1.26.5)
Requires-Dist: wandb ; extra == "wandb" or extra == "all"
Project-URL: Documentation, https://docs.scaffold.merantix-momentum.cloud/
Project-URL: Repository, https://github.com/merantix-momentum/scaffold-core/
Description-Content-Type: text/markdown

<p align="center">
    <picture>
      <source media="(prefers-color-scheme: dark)" srcset="docs/_static/scaffold_logo_black.png" width="200">
      <source media="(prefers-color-scheme: light)" srcset="docs/_static/scaffold_logo_white.png" width="200">
      <img alt="Scaffold Logo" src="https://docs.scaffold.merantix-momentum.cloud/_static/scaffold_logo_white.png" width="200">
    </picture>
    <p align="center">Scaffold Core</p>
</p>


Scaffold is the Momentum breeding ground for utilities supporting our tech stack. As tools move into and out of our tech stack matching technology specific utilities will be developed within this project to make building machine learning projects a joy.

These utilities can encompass anything from simple python wrappers, small convenience functions or reoccurring boilerplate code to entirely new features integrating several technologies into a single workflow. Since all of these are rooted in our tech stack, they are necessarily opinionated and represent our view on how to best use our tooling.


Installation
------------

You can install the latest stable version of Scaffold via pip/Poetry/uv/....
Scaffold provides optional features via extras.

Without any extras:


    pip install mxm-scaffold

Install all, or pick specific extras:


    pip install mxm-scaffold[all]
    pip install mxm-scaffold[flyte,torch]

Documentation
-------------

If you work at Merantix Momentum, you can visit additional documentation via https://docs.scaffold.merantix-momentum.cloud/.

The documentation is built & deployed for the main-branch and tags.
[Please find more information about documentation here](<https://docs.scaffold.merantix-momentum.cloud/usage/document.html>).

Alternatively, build the publicly available documentation locally:

    cd scaffold/docs
    make html

Contribute
---------------------

We use poetry for resolving and installing dependencies. [Check the documentation for more information on how to contribute](<https://docs.scaffold.merantix-momentum.cloud/usage/contribute.html>).

