35 lines
639 B
TOML
35 lines
639 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=64",
|
|
"wheel",
|
|
"torch",
|
|
"numpy",
|
|
"plyfile",
|
|
"trimesh",
|
|
"tqdm",
|
|
"zstandard",
|
|
"easydict"
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
[project]
|
|
name = "o_voxel"
|
|
version = "0.0.1"
|
|
description = "All about voxel."
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{ name = "Jianfeng Xiang", email = "belljig@outlook.com" }
|
|
]
|
|
dependencies = [
|
|
"torch",
|
|
"numpy",
|
|
"plyfile",
|
|
"trimesh",
|
|
"tqdm",
|
|
"zstandard",
|
|
"easydict",
|
|
"cumesh @ git+https://github.com/JeffreyXiang/CuMesh.git",
|
|
"flex_gemm @ git+https://github.com/JeffreyXiang/FlexGEMM.git",
|
|
]
|