-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·45 lines (41 loc) · 1.43 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
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "erdetect"
description = "A package for the automatic detection of evoked responses in SPES/CCEP data"
readme = "README.md"
license = { text="GPLv3" }
requires-python = ">=3.9"
dependencies = [
"ieegprep >= 1.6.1",
"numpy >= 2.2.1",
"scipy >= 1.15.0",
"matplotlib >= 3.10.0",
"bids_validator >= 1.14.6",
]
keywords = ["evoked response", "detection", "ieeg", "n1", "SPES", "CCEP"]
authors = [{ name="Max van den Boom", email="[email protected]" }]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "erdetect.version.__version__"}
[project.urls]
homepage = "https://github.com/MultimodalNeuroimagingLab/ERDetect"
documentation = "https://github.com/MultimodalNeuroimagingLab/ERDetect"
repository = "https://github.com/MultimodalNeuroimagingLab/ERDetect"