-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (46 loc) · 1.23 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
[project]
name = "pylabianca"
version = "0.4.dev0"
description = "Package for analysis of single-neuron spike data."
maintainers = [
{ name = "Mikołaj Magnuski", email = "[email protected]" },
]
license = { text = "MIT" }
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
keywords = [
"neuroscience",
"brain",
]
dependencies = [
"numpy >= 1.15.4",
"scipy >= 1.7.1",
"matplotlib >= 3.5.0",
"pandas",
"scikit-learn",
"borsar",
"h5io",
"h5py",
"xlrd",
"xarray"
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
all = ["mne >= 1.0.0", "neo", "joblib", "numba", "tqdm", "pooch"]
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/labianca/pylabianca"