Skip to content

Commit

Permalink
Merge pull request #309 from AllenNeuralDynamics/feat-add-mapper
Browse files Browse the repository at this point in the history
Update launcher architecture and add aind data mappers
  • Loading branch information
bruno-f-cruz authored Nov 1, 2024
2 parents b0c2bb1 + fba9877 commit 625ca87
Show file tree
Hide file tree
Showing 16 changed files with 612 additions and 27 deletions.
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "aind-behavior-vr-foraging"
description = "A library that defines AIND data schema for the Aind Behavior VR Foraing experiment."
description = "A library that defines AIND data schema for the Aind Behavior VR Foraging experiment."
authors = [ {name = "Bruno Cruz", email = "[email protected]"}]
license = {text = "MIT"}
requires-python = ">=3.11"
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
dynamic = ["version"]

dependencies = [
"aind_behavior_services>=0.8.0",
"aind_behavior_services>=0.8, <0.9",
]

[project.optional-dependencies]
Expand All @@ -25,7 +25,7 @@ linters = [
'codespell'
]

launcher = ["aind_behavior_experiment_launcher[aind-services]<0.2.0"]
launcher = ["aind_behavior_experiment_launcher[aind-services]>=0.2.0rc4"]

docs = [
'Sphinx<7.3',
Expand All @@ -36,6 +36,10 @@ docs = [
'sphinx-jsonschema'
]

[project.scripts]
clabe = "aind_behavior_vr_foraging.launcher:main"
regenerate = "aind_behavior_vr_foraging.regenerate:main"

[tool.setuptools.packages.find]
where = ["src/DataSchemas"]

Expand Down
6 changes: 0 additions & 6 deletions scripts/regenerate.cmd

This file was deleted.

4 changes: 0 additions & 4 deletions scripts/regenerate.ps1

This file was deleted.

2 changes: 1 addition & 1 deletion src/DataSchemas/aind_behavior_session_model.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"properties": {
"aind_behavior_services_pkg_version": {
"default": "0.8.1",
"default": "0.8.2",
"pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$",
"title": "aind_behavior_services package version",
"type": "string"
Expand Down
Loading

0 comments on commit 625ca87

Please sign in to comment.