-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 790 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 790 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
35
36
37
38
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tvb_phaseplane"
version = "0.1.0"
description = "Interactive phase plane widget for neural mass models"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
dependencies = [
"anywidget>=0.9.0",
"ipywidgets>=8.0",
"numpy",
"pydantic-ai>=0.8.1",
"scipy",
"sympy",
"traitlets",
]
[project.optional-dependencies]
dev = ["jupyterlab", "notebook", "jupytext"]
docs = [
"mkdocs>=1.5",
"mkdocs-material>=9.0",
"mkdocstrings[python]>=0.24",
"mkdocs-gen-files>=0.5",
"mkdocs-literate-nav>=0.6",
]
[tool.hatch.build.targets.wheel]
packages = ["src/tvb_phaseplane"]
[dependency-groups]
dev = [
"marimo>=0.17.6",
"pytest>=8.4.2",
]