Files
ipython-demo/pyproject.toml
T
2026-08-30 22:31:12 +07:00

35 lines
872 B
TOML

[project]
name = "ipython-demo"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "lda", email = "[email protected]" }]
requires-python = ">=3.14"
dependencies = [
"fastapi>=0.141.1",
"fastmcp>=3.4.7",
"ipykernel>=7.3.0",
"ipython>=9.16.1",
"jupyter-client>=8.10.0",
"langchain>=1.3.18",
"langchain-openai>=1.6.0",
"matplotlib>=3.11.1",
"matplotlib-inline>=0.1.7",
"uvicorn>=0.52.4",
"wonderwords>=2.2.0",
]
[project.scripts]
ipython-demo = "ipython_shell.app:main"
ipython-shell = "ipython_shell.app:main"
ipython-webapp = "ipython_webapp:main"
ipython-jupyter-webapp = "ipython_webapp.jupyter.app:main"
ipython-mcp = "ipython_mcp.app:main"
[build-system]
requires = ["uv_build>=0.12.6,<0.13.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "ipython_shell"