Files
cs249r_book/labs/pyproject.toml
2026-06-02 15:15:27 -04:00

33 lines
821 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mlsysbook-labs"
version = "0.1.0"
description = "Shared UI, metadata, report, and instructor helpers for the MLSysBook interactive trade-off labs."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Vijay Janapa Reddi", email = "vj@eecs.harvard.edu"}
]
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = []
[tool.hatch.build.targets.wheel]
packages = ["mlsysbook_labs"]
[tool.hatch.build.targets.sdist]
include = [
"mlsysbook_labs",
"README.md",
"pyproject.toml",
]