From ae20cc53c37078a8a7e78a87efe6282a5b008d24 Mon Sep 17 00:00:00 2001 From: Younes Strittmatter Date: Sun, 28 Jul 2024 11:01:39 -0400 Subject: [PATCH] docs: add dependency for building docs --- pyproject.toml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c60b520..a6b8055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,8 +2,8 @@ name = "autora-theorist-darts" description = "Differentiable Architecture Search theorist for AutoRA" authors = [ - { name = "Sebastian Musslick", email = "sebastian_musslick@brown.edu" }, - { name = "John Gerrard Holland", email = "john_holland1@brown.edu" }, + { name = "Sebastian Musslick", email = "sebastian_musslick@brown.edu" }, + { name = "John Gerrard Holland", email = "john_holland1@brown.edu" }, ] dynamic = ["version"] @@ -25,15 +25,19 @@ dev = [ "autora-synthetic" ] +docs = [ + "autora-core[docs]", +] + [tool.isort] profile = "black" [tool.mypy] -mypy_path="./src" +mypy_path = "./src" [[tool.mypy.overrides]] -module = ["matplotlib.*", "autora.*", "sklearn.*", "torch.*", "graphviz.*", "mkdocs_gen_files.*", "pandas.*", "numpy.*","scipy.*"] -ignore_missing_imports=true +module = ["matplotlib.*", "autora.*", "sklearn.*", "torch.*", "graphviz.*", "mkdocs_gen_files.*", "pandas.*", "numpy.*", "scipy.*"] +ignore_missing_imports = true [project.urls] homepage = "http://www.empiricalresearch.ai"