-
Notifications
You must be signed in to change notification settings - Fork 42
/
pyproject.toml
65 lines (61 loc) · 1.77 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
[tool.poetry]
name = "hypyp"
version = "0.5.0-beta.3"
description = "The Hyperscanning Python Pipeline."
readme = "README.md"
authors = [
"Anaël AYROLLLES <[email protected]>",
"Florence BRUN <[email protected]>",
"Phoebe CHEN <[email protected]>",
"Amir DJALOVSKI <[email protected]>",
"Yann BEAUXIS <[email protected]>",
"Suzanne DIKKER <[email protected]>",
"Guillaume DUMAS <[email protected]>"]
license = "BSD-3-Clause"
homepage = "https://github.com/ppsp-team/HyPyP"
repository = "https://github.com/ppsp-team/HyPyP"
documentation = "https://hypyp.readthedocs.io"
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: BSD License",
]
keywords=["hyperscanning", "neuroscience", "pipeline", "statistics", "visualization"]
include=["hypyp/data/Basehead.obj"]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
statsmodels = "^0.13.2"
autoreject = ">=0.3.1"
matplotlib = "^3.7.2"
pandas = "^2.0.3"
numpy = "^1.26.4"
astropy = "^5.1"
meshio = "^5.3.4"
tqdm = "^4.46.0"
scipy = "^1.11.1"
mne = "^1.3"
h5io = "^0.1.7"
mistune = ">=2.0.4"
future = ">=0.18.3"
certifi = ">=2022.12.07"
importlib-resources = "^6.0.0"
[tool.poetry.group.dev.dependencies]
mkdocs = ">=1.3.0"
mkdocs-material = ">=8.2.15"
pylint = "^2.4.4"
black = "^19.10b0"
markdown-include = "^0.5.1"
jupyterlab = "^3.6.7"
widgetsnbextension = "^3.5.1"
ipywidgets = "^7.5.1"
livereload = "^2.6.3"
ipykernel = "^6.19.4"
pytest = ">=7.2.0"
mkdocstrings = ">=0.20.0"
mkdocstrings-python-legacy = "^0.2.3"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}
[build-system]
requires = ["poetry_core>=1.0"]
build-backend = "poetry.masonry.api"