-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (55 loc) · 1.53 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sleap-mot"
authors = [
{name = "Elise Davis", email = "[email protected]"},
{name = "Divya Seshadri Murali", email = "[email protected]"},
{name = "Talmo Pereira", email = "[email protected]"}]
description="Standalone multi-object tracking for the SLEAP ecosystem."
requires-python = ">=3.9"
keywords = ["sleap", "mot", "tracking", "pose tracking", "pose estimation", "behavior"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"]
dependencies = [
"numpy",
"attrs",
"sleap-io",
"scipy",
"motmetrics"]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "sleap_mot.version.__version__"}
readme = {file = ["README.md"], content-type="text/markdown"}
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-watch",
"black",
"pydocstyle",
"toml",
"twine",
"build",
"mkdocs-material[imaging]",
"mkdocs-jupyter",
"mkdocstrings[python]>=0.18",
"mkdocs-gen-files",
"mkdocs-literate-nav",
"mkdocs-section-index",
"mike"]
[project.urls]
Homepage = "https://sleap.ai"
Repository = "https://github.com/talmolab/sleap-mot"
[tool.setuptools.packages.find]
exclude = ["site"]
[tool.black]
line-length = 88
[pydocstyle]
convention = "google"
match-dir = "sleap_mot"