-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
34 lines (29 loc) · 951 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["pymotion/*"]
exclude = ["*test*"]
[project]
name = "upc-pymotion"
version = "0.1.10"
description = "A Python library for working with motion data in NumPy or PyTorch."
readme = "README.md"
authors = [{ name = "Jose Luis Ponton", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["quaternion", "dual quaternion", "rotation matrix", "motion", "blender", "pytorch", "numpy", "forward kinematics", "skeleton"]
dependencies = [
"numpy>=1.20.0",
]
requires-python = ">=3.0"
[project.optional-dependencies]
pytorch = ["torch", "torchvision", "torchaudio"]
viewer = ["plotly", "dash", "dash_bootstrap_components"]
test = ["pytest"]
[project.urls]
Homepage = "https://github.com/UPC-ViRVIG/pymotion"