-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (65 loc) · 1.73 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "dreem"
authors = [
{name = "Arlo Sheridan", email = "asheridan@salk.edu"},
{name = "Aaditya Prasad", email = "aprasad@salk.edu"},
{name = "Vincent Tu", email = "vtu@ucsd.edu"},
{name = "Uri Manor", email = "umanor@salk.edu"},
{name = "Talmo Pereira", email = "talmo@salk.edu"},
]
description = "Global Tracking Transformers for biological multi-object tracking."
requires-python = ">=3.8"
keywords = ["gtr", "mot"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"torch >= 2.0.0",
"torchvision",
"lightning",
"imageio",
"imageio-ffmpeg",
"av",
"albumentations",
"hydra-core",
"sleap-io"
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "dreem.version.__version__"}
readme = {file = ["README.md"]}
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"pydocstyle",
"toml",
"twine",
"build",
"mkdocs-material[imaging]",
"mkdocs-jupyter",
"mkdocstrings[python]>=0.18",
"mkdocs-gen-files",
"mkdocs-literate-nav"
]
[project.scripts]
dreem-train = "dreem.training.train:run"
dreem-eval = "dreem.inference.eval:run"
dreem-track = "dreem.inference.track:run"
dreem-visualize = "dreem.io.visualize:main"
[project.urls]
Homepage = "https://github.com/talmolab/dreem"
Repository = "https://github.com/talmolab/dreem"
[tool.black]
line-length = 88
[pydocstyle]
convention = "google"
match-dir = "sleap_roots"