[build-system] requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version"] build-backend = "hatchling.build" [project] name = "deepagent-lab" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.11" classifiers = [ "Framework :: Jupyter", "Framework :: Jupyter :: JupyterLab", "Framework :: Jupyter :: JupyterLab :: 4", "Framework :: Jupyter :: JupyterLab :: Extensions", "Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] dependencies = [ "jupyter_server>=2.0.1,<3", "langgraph>=0.0.1", "python-dotenv>=0.19.0", "deepagents>=0.1.0", ] dynamic = ["version", "description", "authors", "urls", "keywords"] [project.scripts] deepagent-lab = "deepagent_lab.launcher:main" [project.optional-dependencies] dev = [ "jupyter_server[test]>=2.0.1,<3", "pytest>=7.0.0", "pytest-cov>=4.0.0", "pytest-asyncio>=0.21.0", ] [tool.hatch.version] source = "nodejs" [tool.hatch.metadata.hooks.nodejs] fields = ["description", "authors", "urls"] [tool.hatch.build.targets.sdist] artifacts = ["deepagent_lab/labextension"] exclude = [".github", "binder"] [tool.hatch.build.targets.wheel.shared-data] "deepagent_lab/labextension" = "share/jupyter/labextensions/deepagent-lab" "install.json" = "share/jupyter/labextensions/deepagent-lab/install.json" "jupyter-config/server-config" = "etc/jupyter/jupyter_server_config.d" [tool.hatch.build.hooks.version] path = "deepagent_lab/_version.py" [tool.hatch.build.hooks.jupyter-builder] dependencies = ["hatch-jupyter-builder>=0.5"] build-function = "hatch_jupyter_builder.npm_builder" ensured-targets = [ "deepagent_lab/labextension/static/style.js", "deepagent_lab/labextension/package.json", ] skip-if-exists = ["deepagent_lab/labextension/static/style.js"] [tool.hatch.build.hooks.jupyter-builder.build-kwargs] build_cmd = "build:prod" npm = ["jlpm"] [tool.hatch.build.hooks.jupyter-builder.editable-build-kwargs] build_cmd = "build:lib" npm = ["jlpm"] source_dir = "src" build_dir = "lib" [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"] addopts = [ "-v", "--strict-markers", "--tb=short", ]