-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
32 lines (29 loc) · 934 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
[build-system]
requires = ["maturin>=1.2,<2.0", "patchelf>=0.17"]
build-backend = "maturin"
[project]
name = "fpsample"
version = "0.3.3"
authors = [{ name = "Leonard Lin", email = "[email protected]" }]
keyword = [
"sampling",
"farthest point sampling",
"furthest point sampling",
"point cloud",
]
description = "An efficient CPU implementation of farthest point sampling (FPS) for point clouds."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = ["numpy>=1.16.0"]
[project.urls]
Repository = "https://github.com/leonardodalinky/fpsample"
Tracker = "https://github.com/leonardodalinky/fpsample/issues"
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]