Add pyproject.toml to make package installable

This commit is contained in:
Aarni Koskela
2024-01-18 18:57:57 +02:00
parent 5926b7e47b
commit 7c98737f35
2 changed files with 30 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "handrefinerportable"
readme = "README.md"
version = "2024.01.18.0"
dependencies = [
"rtree",
"mediapipe",
"trimesh[easy]",
]
[project.urls]
Documentation = "https://github.com/huchenlei/HandRefinerPortable"
Issues = "https://github.com/huchenlei/HandRefinerPortable/issues"
Source = "https://github.com/huchenlei/HandRefinerPortable"
[tool.hatch.build.targets.wheel]
packages = [
"hand_refiner",
"manopth",
"mesh_graphormer",
]