-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (64 loc) · 1.94 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aind-behavior-services"
description = "A library that defines AIND data schema and validates JSON files for behavior rig models."
authors = [
{ name = "Bruno Cruz", email = "[email protected]" },
]
license = {text = "MIT"}
requires-python = ">=3.11"
dynamic = ["version", "readme"]
classifiers = [
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
'pydantic>=2.7, <3.0',
'harp-python>=0.2',
'aind-behavior-curriculum==0.0.27',
'gitpython>=3.1, <4.0',
'scikit-learn',
'semver',
]
[project.urls]
Documentation = "https://allenneuraldynamics.github.io/Aind.Behavior.Services/"
Repository = "https://github.com/AllenNeuralDynamics/Aind.Behavior.Services/"
Issues = "https://github.com/AllenNeuralDynamics/Aind.Behavior.Services/issues"
Changelog = "https://github.com/AllenNeuralDynamics/Aind.Behavior.Services/releases"
[project.optional-dependencies]
linters = [
'ruff',
'codespell'
]
docs = [
'Sphinx<7.3',
'furo',
'sphinx-jinja',
'autodoc_pydantic[erdantic]',
'sphinx-jsonschema',
'sphinx-copybutton',
"sphinx_mdinclude",
]
[project.scripts]
regenerate = "aind_behavior_services.scripts.regenerate:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
aind_behavior_services = ["py.typed"]
[tool.setuptools.dynamic]
version = {attr = "aind_behavior_services.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[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'
ignore-words-list = 'nd'