-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 934 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 934 Bytes
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
[project]
name = "probreg"
version = "0.3.8"
readme = "README.md"
description = "Probablistic point cloud resitration algorithms"
authors = [{ name = "nekanat", email = "nekanat.stock@gmail.com" }]
requires-python = ">=3.9,<4.0"
license = "MIT"
dependencies = [
"pybind11>=2.6.2,<3",
"six>=1.15.0,<2",
"scipy>=1.6.0,<2",
"transforms3d>=0.4.0,<0.5",
"scikit-learn~=1.0",
"matplotlib>=3.3.3,<4",
"open3d>=0.19.0",
"pyyaml~=6.0",
"addict>=2.4.0,<3",
"pandas>=2.0.0,<3",
]
[project.optional-dependencies]
experimental = ["dq3d>=0.3.8,<0.4"]
gpu = ["cupy>=12.0.0,<13"]
[dependency-groups]
dev = [
"Sphinx>=3.4.3,<4",
"flake8>=3.8.4,<4",
"sphinx-rtd-theme>=0.5.1,<0.6",
"twine>=3.3.0,<4",
"setuptools>=52.0.0,<53",
"isort>=5.9.3,<6",
"black==22.3.0",
]
[build-system]
requires = ["poetry-core>=1.0.0", "setuptools", "pybind11"]
build-backend = "setuptools.build_meta"