-
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.
- make setup.py load the README.md - update the README and documentation - update the requirement versioning
- Loading branch information
Showing
6 changed files
with
119 additions
and
85 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
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.1" | ||
__version__ = "0.6.4" |
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,4 +1,4 @@ | ||
numpy~=1.21.2 | ||
open3d~=0.13.0 | ||
numpy~=1.21.4 | ||
open3d~=0.14.1 | ||
PyOpenGL~=3.1.5 | ||
PyQt5~=5.15.4 | ||
PyQt5~=5.14.1 |
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,34 +1,46 @@ | ||
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.1", | ||
version="0.6.4", | ||
description="A lightweight tool for labeling 3D bounding boxes in point clouds.", | ||
long_description=open("README.md").read(), | ||
long_description=README, | ||
long_description_content_type="text/markdown", | ||
author="Christoph Sager", | ||
author_email="[email protected]", | ||
url="https://github.com/ch-sa/labelCloud", | ||
license="GNU Geneal Public License v3.0", | ||
packages=[ | ||
"labelCloud", | ||
"labelCloud.ressources", | ||
"labelCloud.ressources.icons", | ||
"labelCloud.ressources.interfaces", | ||
"labelCloud.tests", | ||
"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": ["*"]}, | ||
package_data={ | ||
"labelCloud.ressources": ["*"], | ||
"labelCloud.ressources.icons": ["*"], | ||
"labelCloud.ressources.interfaces": ["*"], | ||
}, | ||
entry_points={"console_scripts": ["labelCloud=labelCloud.__main__:main"]}, | ||
install_requires=[ | ||
"numpy~=1.21.2", | ||
"open3d~=0.13.0", | ||
"numpy~=1.21.4", | ||
"open3d~=0.14.1", | ||
"PyOpenGL~=3.1.5", | ||
"PyQt5~=5.15.4", | ||
"PyQt5~=5.14.1", | ||
], | ||
extras_require={ | ||
"tests": [ | ||
|
@@ -39,8 +51,15 @@ | |
zip_safe=False, | ||
keywords="labelCloud", | ||
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", | ||
], | ||
) |