-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 821 Bytes
/
pyproject.toml
File metadata and controls
42 lines (37 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
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "nstat-toolbox"
version = "0.3.0"
description = "Python port of the nSTAT toolbox"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Cajigas Lab" }
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
"sympy>=1.13",
"PyYAML>=6.0",
"nbformat>=5.10",
"nbclient>=0.10"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"scikit-image>=0.22",
"sphinx>=8.0",
"sphinx-rtd-theme>=3.0",
"myst-parser>=4.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["nstat*"]
[tool.setuptools.package-data]
"nstat.data" = ["manifest.json"]
[project.scripts]
nstat-paper-examples = "nstat.paper_examples:main"
nstat-install = "nstat.install:main"