-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (84 loc) · 2.15 KB
/
pyproject.toml
File metadata and controls
94 lines (84 loc) · 2.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "jabs-behavior-classifier"
version = "0.44.2"
description = ""
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Glen Beane" },
{ name = "Brian Geuther" },
{ name = "Keith Sheppard" },
{ name = "Alexander Berger-Liedtka" },
]
dependencies = [
"jabs-behavior==0.44.2",
"jabs-core==0.44.2",
"jabs-io==0.44.2",
"h5py>=3.10.0,<4.0.0",
"markdown2>=2.5.1,<3.0.0",
"numpy>=2.0.0,<3.0.0",
"opencv-python-headless>=4.8.1.78,<5.0.0",
"packaging>=24.0",
"pandas>=2.2.2,<3.0.0",
"pyside6>=6.8.0,!=6.9.0",
"scikit-learn>=1.5.0,<2.0.0",
"shapely>=2.0.1,<3.0.0",
"tabulate>=0.9.0,<1.0.0",
"toml>=0.10.2,<0.11.0",
"xgboost>=2.0.0,<3.0.0",
"pyarrow>=20.0.0,<23.0.0",
"rich>=14.0.0,<15.0.0",
"rich-argparse>=1.7.1,<2.0.0",
"intervaltree>=3.1.0,<4.0.0",
"qt-material-icons>=0.2.0,<0.3.0",
"jsonschema>=4.25.1,<5.0.0",
"click>=8.2.1",
"argparse-formatter>=1.4",
"distinctipy>=1.3.4",
"catboost>=1.2.8",
]
[project.optional-dependencies]
nwb = ["jabs-io[nwb]"]
yaml = ["pyyaml>=6.0.0"]
[tool.uv.sources]
jabs-behavior = { workspace = true }
jabs-io = { workspace = true }
jabs-core = { workspace = true }
[dependency-groups]
dev = [
{include-group = "lint"},
{include-group = "test"},
"pre-commit>=4.2.0,<5.0.0",
"matplotlib>=3.9.3,<4.0.0",
]
test = [
"pytest>=9.0.3",
"pytest-cov>=7.0.0",
]
lint = [
"ruff>=0.11.5,<0.12.0",
]
docs = [
"mkdocstrings[python]>=1.0.2",
"zensical>=0.0.24",
]
[project.urls]
Repository = "https://github.com/KumarLabJax/JABS-behavior-classifier"
Issues = "https://github.com/KumarLabJax/JABS-behavior-classifier/issues"
[project.scripts]
jabs = "jabs.scripts.gui_entrypoint:main"
"jabs-classify" = "jabs.scripts.classify:main"
"jabs-init" = "jabs.scripts.initialize_project:main"
"jabs-features" = "jabs.scripts.generate_features:main"
"jabs-project-merge" = "jabs.scripts.merge_projects:main"
"jabs-cli" = "jabs.scripts.cli:main"
[tool.uv.workspace]
members = ["packages/*"]
[build-system]
requires = ["uv_build>=0.7.19,<0.8.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
namespace = true
module-name = "jabs"