forked from ch-sa/labelCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
72 lines (68 loc) · 1.97 KB
/
setup.cfg
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
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = labelCloud
version = attr: labelCloud.__init__.__version__
maintainer = Christoph Sager
maintainer_email = [email protected]
license = GNU General Public License v3.0
description = A lightweight tool for labeling 3D bounding boxes in point clouds.
keywords =
labelCloud
machine learning
computer vision
annotation tool
labeling
point clouds
bounding boxes
3d object detection
6d pose estimation
url = https://github.com/ch-sa/labelCloud
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 4 - Beta
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Multimedia :: Graphics :: Viewers
[options]
zip_safe = False
packages =
labelCloud
labelCloud.control
labelCloud.definitions
labelCloud.definitions.label_formats
labelCloud.io
labelCloud.io.labels
labelCloud.io.pointclouds
labelCloud.io.segmentations
labelCloud.labeling_strategies
labelCloud.model
labelCloud.resources
labelCloud.resources.examples
labelCloud.resources.icons
labelCloud.resources.interfaces
labelCloud.tests
labelCloud.utils
labelCloud.view
labelCloud.view.startup
install_requires =
numpy>1.20.0
open3d
PyOpenGL
PyOpenGL-accelerate
PyQt5>=5.15.7
python_requires = >=3.7
[options.entry_points]
console_scripts =
labelCloud = labelCloud.__main__:main
[options.extras_require]
tests = pytest; pytest-qt
[options.package_data]
labelCloud.resources = *.ini, *.pcd, *.txt, *.json
labelCloud.resources.examples = *.json, *.ply
labelCloud.resources.icons = *.ico, *.png, *.svg, *.txt
labelCloud.resources.interfaces = *.ui