-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
57 lines (51 loc) · 1.33 KB
/
setup.cfg
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
[metadata]
name = sleap-anipose
version = attr: sleap_anipose.__version__
author = Sean Afshar
author_email = [email protected]
maintainer = Talmo Pereira
maintainer_email = [email protected]
url = https://github.com/talmolab/sleap-anipose
description = SLEAP to Anipose triangulation pipeline for 3D multi-animal pose tracking.
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
keywords = sleap, pose tracking, pose estimation, behavior
license = BSD 3-Clause License
classifiers =
Programming Language :: Python :: 3
[options]
packages = find:
install_requires =
matplotlib
h5py
imageio
imageio-ffmpeg
opencv-contrib-python < 4.7.0
aniposelib
click
[options.entry_points]
console_scripts =
slap-calibrate = sleap_anipose:calibration.calibrate_cli
slap-triangulate = sleap_anipose:triangulation.triangulate_cli
slap-write_board = sleap_anipose:calibration.write_board_cli
slap-draw_board = sleap_anipose:calibration.draw_board_cli
slap-reproject = sleap_anipose:triangulation.reproject_cli
[options.extras_require]
dev =
pytest
pytest-cov
black
pydocstyle
toml
twine
build
[options.exclude_package_data]
tests = *
docs = *
[options.packages.find]
exclude =
tests*
docs*
[pydocstyle]
convention = google
match-dir = 'sleap_anipose'