-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.07 KB
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sNMO"
dynamic = ["version"]
description = "Single neuron model optimizer — fitting single neuron traces from patch-clamp recordings"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "smestern"},
]
keywords = ["neuroscience", "neuron", "model", "optimization", "patch-clamp", "brian2"]
dependencies = [
"Brian2>=2.5.4",
"elephant>=1.0.0",
"joblib>=1.2.0",
"matplotlib>=3.7.2",
"neo>=0.13.0",
"networkx>=3.1",
"nevergrad>=1.0.0",
"numpy",
"pandas>=2.0.3",
"POT>=0.9.3",
"pyabf",
"pynwb",
"scikit-optimize>=0.9.0",
"scipy>=1.11.1",
]
[project.optional-dependencies]
sbi = [
"sbi>=0.21.0",
"torch>=2.1.0",
]
ax = [
"ax-platform",
"torch>=2.1.0",
]
dev = [
"pytest",
"flake8",
]
[tool.setuptools.dynamic]
version = {attr = "sNMO.__version__"}
[tool.setuptools.packages.find]
include = ["sNMO*"]
[tool.setuptools.package-data]
sNMO = ["*.json", "*.npy"]