-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.69 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sleap-io"
authors = [
{name = "Liezl Maree", email = "lmaree@salk.edu"},
{name = "David Samy", email = "davidasamy@gmail.com"},
{name = "Talmo Pereira", email = "talmo@salk.edu"}]
description="Standalone utilities for working with pose data from SLEAP and other tools."
requires-python = ">=3.7"
keywords = ["sleap", "pose tracking", "pose estimation", "behavior"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"]
dependencies = [
"numpy",
"attrs",
"h5py>=3.8.0",
"pynwb",
"ndx-pose<0.2.0",
"pandas",
"simplejson",
"imageio",
"imageio-ffmpeg>=0.5.0"]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "sleap_io.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://io.sleap.ai"
Repository = "https://github.com/talmolab/sleap-io"
[tool.setuptools.packages.find]
exclude = ["site"]
[tool.black]
line-length = 88
[pydocstyle]
convention = "google"
match-dir = "sleap_io"