-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.16 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cog_ieeg", "cog_ieeg.pipelines"]
[project]
name = "cog_ieeg"
version = "0.1.0-beta"
description = "A Python package to download and analyze iEEG data collected as part of the COGITATE project"
readme = "README.md"
authors = [
{ name = "Alex Lepauvre", email = "[email protected]" },
{ name = "Simon Henin", email = "[email protected]" },
{ name = "Katarian Bendtz", email = "[email protected]" },
{ name = "Praveen Sriprad", email = "[email protected]" },
{ name = "Niccolò Bonacchi", email = "[email protected]" },
{ name = "Gabriel Kreiman", email = "[email protected]" },
{ name = "Lucia Melloni", email = "[email protected]" },
]
requires-python = ">=3.9"
dependencies = [
"ipython",
"jupyter",
"mne==1.7.1",
"mne-bids==0.15.0",
"networkx",
"nibabel",
"nilearn",
"pandas",
"pingouin",
"pyqt5",
"pyvista",
"pyvistaqt",
"pyyaml",
"xnat",
"papermill"
]
[tool.setuptools.package-data]
cog_ieeg = ["config/*.json"]