mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-04-27 16:24:31 -05:00
Quarto needs jupyter/nbformat to execute Python code cells in .qmd tutorials. Moved dependency declarations into pyproject.toml optional groups ([docs], [dev]) so workflows use pip install -e ".[docs]" instead of ad-hoc pip installs.
44 lines
950 B
TOML
44 lines
950 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mlsys"
|
|
version = "0.1.0"
|
|
description = "The Core Physics and Simulation Engine for the Machine Learning Systems Textbook."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "MLSys Authors" }
|
|
]
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
]
|
|
dependencies = [
|
|
"pint>=0.23",
|
|
"pandas>=2.0.0",
|
|
"numpy>=1.24.0",
|
|
"pydantic>=2.0.0",
|
|
"plotly>=5.0.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
docs = [
|
|
"quartodoc",
|
|
"jupyter",
|
|
]
|
|
dev = [
|
|
"pytest",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/mlsysbook/vols"
|
|
"Bug Tracker" = "https://github.com/mlsysbook/vols/issues"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["mlsys*"]
|