-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
executable file
·44 lines (40 loc) · 1.38 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
[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.8"
dependencies = [
"ieegprep >= 1.6.0",
"numpy >= 1.22.3",
"scipy >= 1.8.0",
"matplotlib >= 3.5.1",
"bids_validator >= 1.9.3",
]
keywords = ["evoked response", "detection", "ieeg", "n1", "SPES", "CCEP"]
authors = [{ name="Max van den Boom", email="m.a.vandenboom84@gmail.com" }]
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.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"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"