-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
50 lines (48 loc) · 1.3 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["bionc"]
[project]
name = "bionc"
version = "0.10.0"
description = "Natural Coordinates with python for biomechanics"
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 = [
"numpy",
"packaging",
# "ezc3d", # Not yet available on pypi, use `conda install -c conda-forge ezc3d`
"plotly",
"pyorerun",
"python >=3.9",
"casadi",
"dill",
"mesa-libgl-devel-cos7-x86_64",
"pyomeca",
"numba",
# "biorbd" # Not yet available on pypi, use `conda install -c conda-forge biorbd`
]
keywords = [
"inverse-kinematics",
"biomechanics",
"multibody-dynamics",
"mechanics",
"motion-analysis",
"kinesiology",
"inverse-dynamics",
"cartesian-coordinates",
"forward-dynamics",
"holonomic-constraints",
"natural-coordinates"
]
[project.urls]
homepage = "http://github.com/Ipuch/bionc"