-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.44 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=64", "wheel", "numpy", "pybind11>=2.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "q3dviewer"
version = "1.3.1"
authors = [
{name = "Liu Yang", email = "liu.yang@jp.panasonic.com"}
]
description = "A library designed for quickly deploying a 3D viewer."
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"pyside6",
"PyOpenGL",
]
[project.optional-dependencies]
tools = [
"meshio",
"pypcd4",
"pye57",
"laspy",
"imageio",
"imageio[ffmpeg]",
"matplotlib",
"pyproj",
"requests",
]
cuda = [
"pybind11>=2.6.0",
]
[project.urls]
Homepage = "https://github.com/scomup/q3dviewer"
[project.scripts]
cloud_viewer = "q3dviewer.tools.cloud_viewer:main"
compare_viewer = "q3dviewer.tools.compare_viewer:main"
ros_viewer = "q3dviewer.tools.ros_viewer:main"
mesh_viewer = "q3dviewer.tools.mesh_viewer:main"
gaussian_viewer = "q3dviewer.tools.gaussian_viewer:main"
lidar_cam_calib = "q3dviewer.tools.lidar_cam_calib:main"
lidar_calib = "q3dviewer.tools.lidar_calib:main"
film_maker = "q3dviewer.tools.film_maker:main"
matching_cloud = "q3dviewer.tools.matching_cloud:main"
[tool.setuptools]
packages = {find = {}}
[tool.setuptools.package-data]
q3dviewer = ["shaders/*.glsl"]