We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da31885 commit 0daccd4Copy full SHA for 0daccd4
2 files changed
behavior_data_visualizer/main.py
@@ -195,5 +195,5 @@ def get_mouse_data_dict(project_name):
195
# Build the app
196
app = app_builder(mouse_data_dict)
197
# Run the app
198
- app.run_server(debug=True)
+ app.run(debug=True)
199
pyproject.toml
@@ -6,7 +6,11 @@ readme = "README.md"
6
requires-python = ">=3.9.0"
7
dynamic = ["version"]
8
9
-dependencies = []
+dependencies = [
10
+ "dash",
11
+ "plotly_calplot",
12
+ "fire",
13
+]
14
15
license = {text = "BSD-3-Clause"}
16
0 commit comments