forked from esi-neuroscience/syncopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (51 loc) · 1.44 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
[tool.poetry]
name = "esi-syncopy"
packages = [
{include = "syncopy"}
]
version = "2023.09"
license = "BSD-3-Clause"
readme="README.rst"
homepage="https://syncopy.org"
repository="https://github.com/esi-neuroscience/syncopy"
include = [
"LICENSE",
]
classifiers = [
"Topic :: Scientific/Engineering",
"Environment :: Console",
"Framework :: Jupyter",
"Operating System :: OS Independent"
]
description = "A toolkit for user-friendly large-scale electrophysiology data analysis. Syncopy is compatible with the Matlab toolbox FieldTrip."
authors = ["Stefan Fürtinger <[email protected]>", "Tim Schäfer <[email protected]>", "Joscha Schmiedt <[email protected]>", "Gregor Mönke <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.8,<3.12"
h5py = ">=2.9"
dask = {version=">=2022.6", extras=["distributed"]}
dask-jobqueue = ">=0.8"
numpy = ">=1.10"
scipy = ">=1.10.0"
matplotlib = ">=3.5"
tqdm = ">=4.31"
natsort = "^8.1.0"
psutil = ">=5.9"
fooof = ">=1.0"
bokeh = "^3.1.1"
[tool.poetry.group.dev.dependencies]
black = ">=22.6,<25.0"
pytest = "^7.0"
ipython = ">=8.10"
pytest-cov = "^3.0.0"
sphinx-book-theme = ">=1.0.1"
sphinx-automodapi = "^0.14.1"
pydata-sphinx-theme = ">=0.13.3"
numpydoc = "^1.4.0"
ipdb = "^0.13.9"
memory-profiler = "^0.60.0"
flake8 = "^3.9"
asv = "^0.5.1"
virtualenv = "^20.23.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"