-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
36 lines (33 loc) · 1.07 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pyorerun"]
[project]
name = "pyorerun"
version = " 1.2.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 pyomeca simulations."
license = {file = "LICENSE.md"}
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
# "ezc3d", # Not yet available on pypi, use `conda install -c conda-forge ezc3d`
"numpy",
"rerun-sdk==0.20.1",
"trimesh",
"pyomeca",
"tk",
"imageio",
"imageio-ffmpeg",
# "biorbd" # Not yet available on pypi, use `conda install -c conda-forge biorbd`
]
keywords = ["c3d", "motion capture", "rerun", "biorbd", "pyomeca"]
[project.urls]
homepage = "http://github.com/Ipuch/pyorerun"