forked from NeuralEnsemble/python-neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (63 loc) · 1.49 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
70
71
72
73
74
75
76
[project]
name = "neo"
version = "0.12.0.dev0"
authors = [{name = "Neo authors and contributors"}]
description = "Neo is a package for representing electrophysiology data in Python, together with support for reading a wide range of neurophysiology file formats"
readme = "README.rst"
requires-python = ">=3.7"
license = {text = "BSD 3-Clause License"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
dependencies = [
"packaging",
"numpy>=1.18.5",
"quantities>=0.12.1",
]
[project.urls]
"Homepage" = "https://neuralensemble.org/neo"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["neo"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
# datalad # this dependency is covered by conda (environment_testing.yml)
"scipy>=1.0.0",
"pyedflib",
"h5py",
"igor",
"klusta",
"tqdm",
"nixio",
"matplotlib",
"ipython",
"coverage",
"coveralls",
"pillow",
"sonpy",
"pynwb",
"probeinterface",
]
docs = [
"docutils<0.18",
]
igorproio = ['igor']
kwikio = ['klusta']
neomatlabio = ['scipy>=1.0.0']
nixio = ['nixio>=1.5.0']
stimfitio = ['stfio']
tiffio = ['pillow']
edf = ['pyedflib']
ced = ['sonpy']
nwb = ['pynwb']
maxwell = ['h5py']
biocam = ['h5py']
# TODO [all]