Files
cs249r_book/pyproject.toml
Vijay Janapa Reddi 87e326b39e fix(ci): add jupyter to docs deps and centralize optional dependencies
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.
2026-03-13 08:33:43 -04:00

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*"]