-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
83 lines (76 loc) · 2.66 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
77
78
79
80
81
82
83
[project]
name = "miv-simulator"
version = "0.0.5"
description = "Mind-In-Vitro simulator"
authors = []
dependencies = [
"neuroh5 @ git+https://github.com/iraikov/neuroh5.git",
"treverhines-rbf>=2024.3.21",
"pyyaml>=6.0.2",
"pydantic>=2.8.2",
"matplotlib>=3.9.2",
"neuron>=8.2.6",
"quantities>=0.16.0",
"machinable>=4.10.3",
"networkx>=3.2.1",
]
readme = "README.md"
requires-python = ">= 3.9"
[project.optional-dependencies]
docs = [
"sphinx",
"pydata-sphinx-theme",
"readthedocs-sphinx-search",
"sphinx-autodoc-typehints",
"myst-nb",
"numpydoc",
"sphinx-togglebutton",
"sphinx-copybutton",
"sphinx-click",
"sphinxcontrib-mermaid"
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.3.2",
"ruff>=0.6.9",
]
[tool.uv.sources]
treverhines-rbf = { git = "https://github.com/treverhines/RBF" }
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/miv_simulator"]
[project.scripts]
# Main functions
make-h5types = "scripts.make_h5types:main"
measure-distances = "scripts.measure_distances:main"
generate-distance-connections = "scripts.generate_distance_connections:main"
generate-gapjunctions = "scripts.generate_gapjunctions:main"
generate-input-features = "scripts.generate_input_features:main"
generate-input-spike-trains = "scripts.generate_input_spike_trains:main"
generate-soma-coordinates = "scripts.generate_soma_coordinates:main"
distribute-synapse-locs = "scripts.distribute_synapse_locs:main"
run-network = "scripts.run_network:main"
network-clamp = "scripts.analysis.network_clamp:main_cli"
# Analysis scripts
plot-biophys-cell-tree = "scripts.analysis.plot_biophys_cell_tree:main"
plot-cell-tree = "scripts.analysis.plot_cell_tree:main"
plot-coords-in-volume = "scripts.analysis.plot_coords_in_volume:main"
plot-network-clamp = "scripts.analysis.plot_network_clamp:main"
plot-spike-raster = "scripts.analysis.plot_spike_raster:main"
plot-state = "scripts.analysis.plot_state:main"
plot-single-vertex-dist = "scripts.analysis.plot_single_vertex_dist:main"
plot-spatial-spike-raster = "scripts.analysis.plot_spatial_spike_raster:main"
plot-lfp = "scripts.analysis.plot_lfp:main"
plot-lfp-spectrogram = "scripts.analysis.plot_lfp_spectrogram:main"
#Tools
show-h5types = "scripts.tools.show_h5types:main"
query-cell-attrs = "scripts.tools.query_cell_attrs:main"
check-config = "scripts.tools.check_config:main"
cut-slice = "scripts.tools.cut_slice:main"
sample-cells = "scripts.tools.sample_cells:main"
reposition-trees = "scripts.tools.reposition_trees:main"
optimize-network = "scripts.optimization.optimize_network:main_cli"