-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
55 lines (48 loc) · 1.32 KB
/
pyproject.toml
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
53
54
55
[tool.poetry]
name = "python-rtspm"
version = "0.2.7"
description = "Python adaptation of SPM functions for real-time fMRI analysis"
authors = ["OpenNFT Team <[email protected]>"]
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
packages = [
{ include = "rtspm" },
]
include = [
"src/*"
]
[tool.poetry.dependencies]
python = "^3.8"
importlib-metadata = "^7.0.0"
numpy = ">=1.19.2"
scipy = ">=1.5.4"
[tool.poetry.group.dev.dependencies]
setuptools = "^69.0.2"
pytest = "^6.1.1"
pydicom = "^2.2.2"
nibabel = "^3.2.1"
pybind11 = "^2.8.1"
[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"