Files
krishna-kasuganti 18d1b98bae [Feature]: Python example app: ML experiment tracker using InsForge REST API (#1185)
* Add Python ML experiment tracker example using InsForge REST API

* fix: add docstrings, address CodeRabbit review comments

* fix: correct nested tracker directory structure

* fix: add empty access token guard to client _refresh_token

* Add screenshots and demo to README

* Add InsForge dashboard SQL instructions to README
2026-05-05 22:58:40 -07:00

21 lines
410 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ml-experiment-tracker"
version = "0.1.0"
description = "CLI tool for tracking ML experiments via InsForge BaaS"
requires-python = ">=3.10"
dependencies = [
"click>=8.1",
"httpx>=0.27",
"rich>=13.7",
]
[project.scripts]
tracker = "tracker.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["tracker"]