-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from ch-sa/ch-sa/pip-refactoring
Pip Refactoring
- Loading branch information
Showing
8 changed files
with
177 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.6.5" | ||
__version__ = "0.6.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
[metadata] | ||
name = labelCloud | ||
version = attr: labelCloud.__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.6 | ||
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] | ||
packages = | ||
labelCloud | ||
labelCloud.control | ||
labelCloud.definitions | ||
labelCloud.label_formats | ||
labelCloud.labeling_strategies | ||
labelCloud.model | ||
labelCloud.ressources.icons | ||
labelCloud.ressources.interfaces | ||
labelCloud.ressources | ||
labelCloud.tests | ||
labelCloud.utils | ||
labelCloud.view | ||
zip_safe = False | ||
install_requires = | ||
numpy | ||
open3d | ||
PyOpenGL | ||
PyQt5 <= 5.14.1;platform_system=='Windows' | ||
PyQt5;platform_system!='Windows' | ||
python_requires = >=3.6 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
labelCloud = labelCloud.__main__:main | ||
|
||
[options.extras_require] | ||
tests = pytest; pytest-qt | ||
|
||
[options.package_data] | ||
labelcloud.ressources = * | ||
labelcloud.ressources.icons = * | ||
labelcloud.ressources.interfaces = * | ||
labelcloud.ressources.examples = * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,3 @@ | ||
from pathlib import Path | ||
|
||
from setuptools import setup | ||
|
||
this_directory = Path(__file__).parent | ||
README = (this_directory / "README.md").read_text() | ||
|
||
|
||
setup( | ||
name="labelCloud", | ||
version="0.6.5", | ||
description="A lightweight tool for labeling 3D bounding boxes in point clouds.", | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
maintainer="Christoph Sager", | ||
maintainer_email="[email protected]", | ||
url="https://github.com/ch-sa/labelCloud", | ||
license="GNU Geneal Public License v3.0", | ||
packages=[ | ||
"labelCloud", | ||
"labelCloud.control", | ||
"labelCloud.definitions", | ||
"labelCloud.label_formats", | ||
"labelCloud.labeling_strategies", | ||
"labelCloud.model", | ||
"labelCloud.ressources.icons", | ||
"labelCloud.ressources.interfaces", | ||
"labelCloud.ressources", | ||
"labelCloud.tests", | ||
"labelCloud.utils", | ||
"labelCloud.view", | ||
], | ||
package_data={ | ||
"labelCloud.ressources": ["*"], | ||
"labelCloud.ressources.icons": ["*"], | ||
"labelCloud.ressources.interfaces": ["*"], | ||
}, | ||
entry_points={"console_scripts": ["labelCloud=labelCloud.__main__:main"]}, | ||
install_requires=[ | ||
"numpy", | ||
"open3d", | ||
"PyOpenGL", | ||
"PyQt5 <= 5.14.1;platform_system=='Windows'", # avoids PyQt5 incompatibility on windows | ||
"PyQt5;platform_system!='Windows'", | ||
], | ||
extras_require={ | ||
"tests": [ | ||
"pytest", | ||
"pytest-qt", | ||
], | ||
}, | ||
zip_safe=False, | ||
keywords=[ | ||
"labelCloud", | ||
"machine learning", | ||
"computer vision", | ||
"annotation tool", | ||
"labeling", | ||
"point clouds", | ||
"bounding boxes", | ||
"3d object detection", | ||
"6d pose estimation", | ||
], | ||
python_requires=">=3.6", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.6", | ||
"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", | ||
], | ||
project_urls={ | ||
"GitHub": "https://github.com/ch-sa/labelCloud", | ||
"YouTube Demo": "https://www.youtube.com/watch?v=8GF9n1WeR8A", | ||
"Publication": "https://arxiv.org/abs/2103.04970", | ||
}, | ||
) | ||
setup() |