-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
40 lines (35 loc) · 911 Bytes
/
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
[tool.poetry]
name = "jabs-behavior-classifier"
version = "0.18.0"
license = "Proprietary"
repository = "https://github.com/KumarLabJax/JABS-behavior-classifier"
description = ""
authors = ["Glen Beane", "Brian Geuther"]
readme = "README.md"
packages = [
{ include = "jabs", from = "src" },
]
[tool.poetry.scripts]
jabs = "jabs.scripts:main"
jabs-classify = "jabs.scripts.classify:main"
jabs-init = "jabs.scripts.initialize_project:main"
jabs-stats = "jabs.scripts.stats:main"
[tool.poetry.dependencies]
python = "~3.10"
h5py = "3.9.0"
markdown2 = "^2.5.1"
numpy = "1.25"
opencv-python-headless = "^4.8.1.78"
pandas = "2.1.1"
pyside6 = "6.2.4"
scikit-learn = "1.3.0"
shapely = "^2.0.1"
tabulate = "^0.9.0"
toml = "^0.10.2"
xgboost = "1.7.6"
[tool.poetry.group.dev.dependencies]
matplotlib = "^3.9.3"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"