-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.18 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pyorerun"]
[project]
name = "pyorerun"
version = "1.5.3"
authors = [{name = "Pierre Puchaud", email = "puchaud.pierre@gmail.com"}]
maintainers = [{name = "Pierre Puchaud", email = "puchaud.pierre@gmail.com"}]
description = "A Python package to rerun C3D files and biomechanical simulations."
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"ezc3d", # Now needed, but imported for our custom PyoMarkers.from_c3d()
"numpy",
"rerun-sdk==0.30.2",
"trimesh",
"tk",
"imageio",
"imageio-ffmpeg",
"matplotlib",
"trc-data-reader"
# "opensim", # Not yet available on pypi, use `conda install opensim-org opensim=4.5.1`
# "biorbd" # Not yet available on pypi, use `conda install -c conda-forge biorbd`
]
keywords = ["c3d", "motion capture", "rerun", "biorbd", "markers"]
[project.urls]
homepage = "http://github.com/Ipuch/pyorerun"