forked from freemocap/freemocap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoetry_pyproject.toml
74 lines (62 loc) · 1.71 KB
/
poetry_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
73
[tool.poetry]
name = "freemocap"
version = "1.0.28"
description = "A free and open source markerless motion capture system for everyone 💀✨"
authors = ["Skelly FreeMoCap <[email protected]>"]
license = "AGPLv3"
readme = "README.md"
[project.urls]
Homepage = "https://freemocap.org"
Documentation = "https://freemocap.github.io/documentation/"
Github = "https://github.com/freemocap/freemocap"
Issues = "https://github.com/freemocap/freemocap/issues"
Community_Discord = "https://discord.gg/uTvkkJnSff"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
skellycam = "2023.9.1086"
skelly_viewer = "2023.5.1019"
skellyforge = "2023.9.1004"
skelly_synchronize = "2023.10.1027"
mediapipe = "^0.10.7"
opencv-contrib-python = "4.8.*"
toml = "0.10.2"
aniposelib = "0.4.3"
libsass = "0.21.0"
ipykernel = "6.23.1"
plotly = "^5.17.1"
pydantic = "1.*"
packaging = "^23.2"
ajc27-freemocap-blender-addon = "^0.2.14"
numpy = "^1.23.5"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
pre-commit = "^3.4.0"
pyinstaller = "^6.0.0"
pytest = "*"
pytest-cov = "^4.1.0"
bumpver = "^2023.1129"
flake8 = "^6.0.0"
flake8-bandit = "^4.1.1"
flake8-bugbear = "^23.9.16"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.bumpver]
current_version = "v1.0.25"
version_pattern = "vMAJOR.MINOR.PATCH[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"freemocap/__init__.py" = ["{version}"]
[project.scripts]
freemocap = "freemocap.__main__:main"
[tool.setuptools]
py-modules = ["freemocap"]
[tool.black]
line-length = 120
[tool.taskipy.tasks]
setup = "pre-commit install"
installer = "./bin/installer.sh"
format = "black freemocap"