-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.29 KB
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
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "bidsreader"
version = "0.2.1"
description = "Data loader and file reader for the OpenBIDS format"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Computational Memory Lab" },
]
keywords = ["bids", "eeg", "ieeg", "neuroscience", "mne"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mne>=1.0",
"mne-bids>=0.12",
"numpy>=1.23,<2.0",
"pandas>=1.5",
]
[project.optional-dependencies]
ptsa = ["ptsa"]
dev = [
"pytest>=7.0",
"pytest-cov",
]
all = ["bidsreader[ptsa,dev]"]
[project.urls]
Homepage = "https://github.com/pennmem/bidsreader"
Repository = "https://github.com/pennmem/bidsreader"
Issues = "https://github.com/pennmem/bidsreader/issues"
[tool.setuptools.packages.find]
include = ["bidsreader*"]
exclude = ["tests*", "tutorials*", "cmlbidsreader_tutorials*"]
[tool.pytest.ini_options]
testpaths = ["tests"]