-
-
Notifications
You must be signed in to change notification settings - Fork 422
/
pyproject.toml
37 lines (29 loc) · 949 Bytes
/
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
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "neurokit2"
version = "0.2.8" # Needs to find a way to automatically get latest version
description = "The Python Toolbox for Neurophysiological Signal Processing."
authors = [
"Dominique Makowski <@DominiqueMakowski>",
"Tam Pham <@Tam-Pham>",
"Zen Juen Lau <@Zen-Juen>",
"Jan C. Brammer <@JanCBrammer>",
"François Lespinasse <@sangfrois>"
]
readme = 'README.rst' # Markdown files are supported
repository = "https://github.com/neuropsychology/NeuroKit"
homepage = "https://github.com/neuropsychology/NeuroKit"
keywords = ['python', 'neurokit', 'neurokit2', 'physiological', 'signal']
[tool.poetry.dependencies]
python = "^3.11"
scipy = "^1.11"
scikit-learn = "^1.4"
pandas = "^2.1"
matplotlib = "*"
requests = "^2.31.0"
cvxopt = "^1.3"
biosppy = "*"
[tool.poetry.dev-dependencies]
pytest = "^3.4"