Build typed IPython app execution pipeline

This commit is contained in:
lda
2026-08-30 01:46:36 +07:00 Verified
commit d4d05d12cf
13 changed files with 1283 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
[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 = [
"ipython>=9.16.1",
"matplotlib>=3.11.1",
"matplotlib-inline>=0.1.7",
"sympy>=1.14.0",
]
[project.scripts]
ipython-demo = "ipython_demo.app:main"
[build-system]
requires = ["uv_build>=0.12.6,<0.13.0"]
build-backend = "uv_build"