-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (62 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
76 lines (62 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["uv_build>=0.8.22"]
build-backend = "uv_build"
[project]
name = "aind-behavior-dynamic-foraging"
description = "A library that defines AIND data schema for the Aind Behavior Dynamic Foraging experiment."
authors = [
{name = "Micah Woodard", email = "micah.woodard@alleninstitute.org"},
{name = "Bruno Cruz", email = "bruno.cruz@alleninstitute.org"}
]
license = "MIT"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
]
version = "0.0.2rc27"
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = [
"aind_behavior_services>=0.13.5",
"pydantic-settings",
]
[tool.uv.workspace]
members = ["workspace/*"]
[project.urls]
Documentation = "https://allenneuraldynamics.github.io/Aind.Behavior.DynamicForaging/"
Repository = "https://github.com/AllenNeuralDynamics/Aind.Behavior.DynamicForaging/"
Issues = "https://github.com/AllenNeuralDynamics/Aind.Behavior.DynamicForaging/issues"
Changelog = "https://github.com/AllenNeuralDynamics/Aind.Behavior.DynamicForaging/releases"
[project.optional-dependencies]
data = ["contraqctor>=0.5.3"]
[dependency-groups]
dev = [
"ruff",
"codespell",
"aind-behavior-dynamic-foraging[data]",
"aind-clabe[aind-services]>=0.10"
]
docs = [
'Sphinx',
'furo',
'sphinx-jinja',
'autodoc_pydantic[erdantic]',
'myst_parser',
'sphinx-jsonschema',
]
[project.scripts]
dynamic-foraging = "aind_behavior_dynamic_foraging.cli:main"
[tool.ruff]
line-length = 120
target-version = 'py311'
[tool.ruff.lint]
extend-select = ['Q', 'RUF100', 'C90', 'I']
extend-ignore = []
mccabe = { max-complexity = 14 }
pydocstyle = { convention = 'google' }
[tool.codespell]
skip = '.git,*.pdf,*.svg,./bonsai,*.bonsai,./docs/_build,uv.lock,*Generated.cs'
ignore-words-list = 'nd'
[tool.uv]
default-groups = ['dev']
required-version = '>=0.8.4'