-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (48 loc) · 1.14 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
51
52
53
54
[tool.poetry]
name = "connectivity-metrics-tutorials"
version = "0.1.0"
description = "Educational workshop series on hyperscanning and EEG connectivity metrics"
authors = ["Ramdam17 <remy.ramadour.labs@gmail.com>"]
readme = "README.md"
packages = [{include = "src"}]
[tool.poetry.dependencies]
python = ">=3.12,<3.14"
# Core scientific computing
numpy = "^2.2"
scipy = "^1.11"
# Visualization
matplotlib = "^3.8"
seaborn = "^0.13"
# EEG analysis
mne = "^1.6"
hypyp = ">=0.5.0b15"
# Jupyter support
jupyter = "^1.0"
ipykernel = "^6.27"
ipywidgets = "^8.1"
# Data handling
pandas = "^2.1"
# Network analysis
networkx = "^3.2"
[tool.poetry.group.dev.dependencies]
# Linting and formatting
ruff = "^0.1"
mypy = "^1.7"
# Pre-commit hooks
pre-commit = "^3.6"
# Testing
pytest = "^7.4"
[tool.ruff]
line-length = 88
target-version = "py311"
select = ["E", "F", "I", "N", "W", "D", "UP", "ANN", "B", "C4", "SIM"]
ignore = ["ANN101", "ANN102", "D100", "D104"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"