CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
weijie-chen

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: weijie-chen/Linear-Algebra-With-Python
Path: blob/master/pyproject.toml
Views: 449
1
[tool.poetry]
2
name = "linear-algebra-with-python"
3
version = "0.1.0"
4
description = ""
5
authors = ["weijie-chen <[email protected]>"]
6
readme = "README.md"
7
8
[tool.poetry.dependencies]
9
python = "^3.12"
10
jupyter = "^1.0.0"
11
nbconvert = "^7.16.4"
12
quarto-cli = "^1.4.555"
13
14
15
[build-system]
16
requires = ["poetry-core"]
17
build-backend = "poetry.core.masonry.api"
18
19