forked from ppsp-team/HyPyP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (65 loc) · 1.79 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
68
69
[tool.poetry]
name = "hypyp"
version = "0.4.0-beta.4"
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.8,<4.0"
joblib = "^1.1.0"
scikit-learn = "1.0"
statsmodels = "^0.13.2"
autoreject = ">=0.3.1"
matplotlib = "^3.2.1"
pandas = "^1.0.3"
numpy = "^1.18.3"
astropy = "^5.1"
meshio = "^5.3.4"
tqdm = "^4.46.0"
scipy = "^1.4.1"
pyqt5 = "^5.15.0"
mne = "^1.0.3"
urllib3 = ">=1.26.4"
pyyaml = ">=5.4"
jinja2 = ">=2.11.3"
Pillow = ">=8.1.1"
bleach = ">=3.3.0"
h5py = "^3.7.0"
Pygments = "2.11"
livereload = "^2.6.3"
[tool.poetry.dev-dependencies]
pytest = "^5.4.1"
mkdocs = "^1.1"
mkdocstrings = "^0.10.3"
mkdocs-material = "^5.1.1"
pylint = "^2.4.4"
black = "^19.10b0"
markdown-include = "^0.5.1"
jupyterlab = "^2.1.4"
widgetsnbextension = "^3.5.1"
ipywidgets = "^7.5.1"
livereload = "^2.6.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"