-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·43 lines (40 loc) · 1.46 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 = "ieegprep"
description = "A package to read and pre-process Intracranial Electroencephalography (iEEG) data that is structured according to the Brain Imaging Data Structure (BIDS)"
readme = "README.md"
license = { text="GPLv3" }
requires-python = ">=3.9"
dependencies = [
"numpy >= 2.2.1",
"scipy >= 1.15.0",
"pymef >= 1.4.5",
"psutil >= 6.1.1",
]
keywords = ["intracranial", "electroencephalography", "ieeg", "BIDS"]
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 = "ieegprep.version.__version__"}
[project.urls]
homepage = "https://github.com/MultimodalNeuroimagingLab/ieegprep"
documentation = "https://github.com/MultimodalNeuroimagingLab/ieegprep"
repository = "https://github.com/MultimodalNeuroimagingLab/ieegprep"