-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.21 KB
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
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "python-rtspm"
version = "0.2.18"
description = "Python adaptation of SPM functions for real-time fMRI analysis"
authors = ["OpenNFT Team <opennft@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
keywords = ["neurofeedback", "neurofeedback-training", "opennft", "spm"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [
{ include = "rtspm" },
]
include = [
"src/*"
]
[tool.poetry.dependencies]
python = "^3.11"
numpy = ">=1.19.2"
scipy = ">=1.5.4"
[tool.poetry.group.dev.dependencies]
setuptools = "^77.0.3"
pytest = "^8.3.5"
pydicom = "^3.0.1"
nibabel = "^5.3.2"
pybind11 = "^2.13.6"
[tool.poetry.build]
script = "buildext.py"
generate-setup-file = true
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools",
"pybind11",
]
build-backend = "poetry.core.masonry.api"