-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.19 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
[project]
name = "borsar"
version = "0.2"
description = "tools for electrophysiological analysis, especially cluster-based tests."
maintainers = [
{ name = "Mikołaj Magnuski", email = "[email protected]" },
]
license = { text = "BSD-3-Clause" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = [
"neuroscience",
"neuroimaging",
"MEG",
"EEG",
"brain",
]
dependencies = [
"numpy >= 1.15.4",
"scipy >= 1.7.1",
"matplotlib >= 3.5.0",
"pandas",
"scikit-image",
"mne >= 1.0.0",
"tqdm",
"h5io",
"h5py"
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/mmagnuski/borsar"