Metadata-Version: 2.3
Name: rats-devtools
Version: 0.11.1.dev20250528185313
Summary: Rats Development Tools
License: MIT
Keywords: pipelines,machine learning,research
Author: Elon Portugaly
Author-email: elonp@microsoft.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: azure-ai-ml
Requires-Dist: azure-identity
Requires-Dist: click
Requires-Dist: mdx-truly-sane-lists
Requires-Dist: mkdocs
Requires-Dist: mkdocs-awesome-pages-plugin
Requires-Dist: mkdocs-material
Requires-Dist: mkdocs-video
Requires-Dist: mkdocstrings
Requires-Dist: mkdocstrings-python
Requires-Dist: rats-apps
Requires-Dist: toml
Requires-Dist: twine
Project-URL: Documentation, https://microsoft.github.io/rats
Project-URL: Repository, https://github.com/microsoft/rats
Description-Content-Type: text/markdown

# introduction

The `rats-devtools` component provides a suite of tools to automate and streamline the development
workflow for any application. It offers commands for tasks such as CI pipeline checks,
container image building, documentation generation, and other essential development operations that
support, but are not directly part of, your product. While originally developed for this project,
`rats-devtools` is now designed for general use and can help teams enforce best practices and
maintain high-quality development environments across different projects.

Typically, the commands provided by this component are installed repo-wide, and are able to support
both monorepos, and single-component code bases. The tools for the development of `rats` components
can be installed with the `rats.setup` script found in the `bin/` folder.

```bash
cd rats
direnv allow .
rats.setup
```

You can configure shell-completion for the duration of your session with the commands below:

``` bash
eval "$(_RATS_AML_COMPLETE=zsh_source rats-aml)"
eval "$(_RATS_CI_COMPLETE=zsh_source rats-ci)"
eval "$(_RATS_DOCS_COMPLETE=zsh_source rats-docs)"
eval "$(_RATS_EZ_COMPLETE=zsh_source rats-ez)"
eval "$(_RATS_RUNTIME_COMPLETE=zsh_source rats-runtime)"
```

The commands in this component are also used by our CI pipelines, so will give you a good way
to validate your changes before submitting a pull request.

