-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (45 loc) · 1.24 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "aind-behavior-core-analysis"
description = "A library with core primitives for analysis shared across all `Aind.Behavior` tasks"
license = {text = "MIT"}
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3"
]
dynamic = ["version", "readme"]
dependencies = [
'harp-python',
'numpy<2.0.0', # numpy 2.0.0 is not supported by harp
'aind_behavior_services@git+https://github.com/AllenNeuralDynamics/[email protected]',
'pyyaml',
'requests',
]
[project.optional-dependencies]
linters = [
'ruff',
'codespell'
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "aind_behavior_core_analysis.__version__"}
readme = {file = ["README.md"]}
[tool.mypy]
enable_incomplete_feature = ["Unpack"]
plugins = [
"pydantic.mypy",
]
[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,./build'
ignore-words-list = 'nd'