Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update launcher architecture and add aind data mappers #309

Merged
merged 9 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading