-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
99 lines (86 loc) · 2.87 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# pyproject.toml
# originally based on - https://realpython.com/pypi-publish-python-package/
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "skellytracker"
readme = "README.md"
authors = [
{name = "Skelly FreeMoCap", email = "info@freemocap.org"},
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Capture",
"Topic :: Multimedia :: Video :: Display",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
"Topic :: System :: Hardware",
"Topic :: System :: Hardware :: Universal Serial Bus (USB)",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Video (UVC)",
]
keywords = [
"camera",
"stream",
"video",
"image",
"opencv",
"skelly",
"freemocap",
"motion capture",
"synchronization",
"computer vision"
]
#dynamic = ["dependencies"]
dependencies = [
"opencv-contrib-python==4.8.*",
"pydantic==2.*",
"numpy<2",
"tqdm==4.*",
]
requires-python = ">=3.9,<3.13"
dynamic = ["version", "description"]
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest", "ruff"]
mediapipe = ["mediapipe==0.10.14"]
yolo = ["ultralytics~=8.0.202"]
all = ["ultralytics~=8.0.202", "mediapipe==0.10.14"]
[project.urls]
Homepage = "https://github.com/freemocap/skellytracker"
[tool.bumpver]
current_version = "v2024.09.1019"
version_pattern = "vYYYY.0M.BUILD[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"skellytracker/__init__.py" = ["{version}"]
[tool.ruff.lint.per-file-ignores]
"*/tests/*" = ["S101"]
[tool.ruff.lint]
extend-select = ["B", "S", "C4", "ISC", "PERF"]
[project.scripts]
skellytracker = "skellytracker.__main__:cli_main"
skellytracker_blendshapes = "skellytracker.scripts.blendshapes_to_csv:main"
[tool.setuptools]
py-modules = ["skellytracker"]