mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-07-16 23:24:55 -05:00
33 lines
821 B
TOML
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",
|
|
]
|