-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 821 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Needed for local builds
[tool.poetry]
name = "jdesmos"
version = "0.0.04"
description = "Easily embed Desmos Graphs in Jupyter"
authors = ["John Lockwood <john@codesolid.com>"]
readme = "README.md"
license = "GPL3.0"
# Suggested for PyPI, unfortunately redundant.
[project]
name = "jdesmos"
version = "0.0.04"
description = "Easily embed Desmos Graphs in Jupyter"
authors = ["John Lockwood <john@codesolid.com>"]
readme = "README.md"
license = "GPL3.0"
dependencies = [
"python >= 3.9",
"ipython >= 5",
]
[project.urls]
Repository = "https://github.com/CodeSolid/jdesmos/"
"Demo Notebook" = "https://github.com/CodeSolid/jdesmos/blob/main/Demo.ipynb"
[tool.poetry.group.dev.dependencies]
jupyterlab = "^4.2.4"
sympy = "^1.13.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"