-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (60 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "eegdash"
version = "0.0.8"
authors = [
{ name = "Young Truong", email = "dt.young112@gmail.com" },
{ name = "Arnaud Delorme", email = "adelorme@gmail.com" },
]
description = "EEG data for machine learning"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"braindecode @ git+https://github.com/braindecode/braindecode.git@master",
"mne_bids",
"numba",
"numpy",
"pandas",
"pybids",
"pymongo",
"python-dotenv",
"s3fs",
"scipy",
"tqdm",
"xarray",
"pre-commit",
]
[project.urls]
Homepage = "https://github.com/sccn/EEG-Dash-Data"
Issues = "https://github.com/sccn/EEG-Dash-Data/issues"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
where = ["."]
include = ["eegdash*"]
exclude = []
namespaces = false
[tool.ruff]
lint.ignore-init-module-imports = true
line-length = 88
target-version = "py311"
[tool.isort]
skip = [".gitignore"]
skip_glob = ["test/*", "examples/*"]
py_version = 311
profile = "black"
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
known_first_party = ["eegdash", "braindecode"]
lines_between_sections = 1
[pytest]
testpaths = ["test"]
python_files = ["test_*.py", "*_test.py"]
python_functions = ["test_*"]