conquer3d 0.1.9__tar.gz → 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {conquer3d-0.1.9 → conquer3d-0.2.0}/PKG-INFO +3 -2
- {conquer3d-0.1.9 → conquer3d-0.2.0}/README.md +1 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/PKG-INFO +3 -2
- {conquer3d-0.1.9 → conquer3d-0.2.0}/pyproject.toml +5 -5
- {conquer3d-0.1.9 → conquer3d-0.2.0}/LICENSE +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/_C.pyi +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/_C.so +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/__init__.py +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/bvh.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/gs_bvh.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/kdtree.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/pgs_bvh.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/primitive/gs.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/primitive/pgs.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/data_structure/bvh.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/data_structure/kdtree.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/gs.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/gs_aabb.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/pgs.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/pgs_aabb.cu +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/pybind.cpp +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/data_structure/__init__.py +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/__init__.py +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/gs.py +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/pgs.py +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/SOURCES.txt +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/dependency_links.txt +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/not-zip-safe +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/requires.txt +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/top_level.txt +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/setup.cfg +0 -0
- {conquer3d-0.1.9 → conquer3d-0.2.0}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: conquer3d
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Geometric Cuda Tool Box
|
|
5
5
|
Author-email: Do Hoang Khoi <khoido8899@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/KhoiDOO/conquer3d.git
|
|
|
9
9
|
Project-URL: Documentation, https://github.com/KhoiDOO/conquer3d#readme
|
|
10
10
|
Project-URL: Issues, https://github.com/KhoiDOO/conquer3d/issues
|
|
11
11
|
Keywords: geometry
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: torch>=2.0.0
|
|
@@ -58,6 +58,7 @@ pip install plotly open3d jupyter trimesh
|
|
|
58
58
|
# Development
|
|
59
59
|
```bash
|
|
60
60
|
pip install build twine
|
|
61
|
+
rm -rf dist
|
|
61
62
|
python -m build --sdist
|
|
62
63
|
twine upload dist/*
|
|
63
64
|
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: conquer3d
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Geometric Cuda Tool Box
|
|
5
5
|
Author-email: Do Hoang Khoi <khoido8899@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/KhoiDOO/conquer3d.git
|
|
|
9
9
|
Project-URL: Documentation, https://github.com/KhoiDOO/conquer3d#readme
|
|
10
10
|
Project-URL: Issues, https://github.com/KhoiDOO/conquer3d/issues
|
|
11
11
|
Keywords: geometry
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENSE
|
|
15
15
|
Requires-Dist: torch>=2.0.0
|
|
@@ -58,6 +58,7 @@ pip install plotly open3d jupyter trimesh
|
|
|
58
58
|
# Development
|
|
59
59
|
```bash
|
|
60
60
|
pip install build twine
|
|
61
|
+
rm -rf dist
|
|
61
62
|
python -m build --sdist
|
|
62
63
|
twine upload dist/*
|
|
63
64
|
```
|
|
@@ -9,14 +9,14 @@ build-backend = "setuptools.build_meta"
|
|
|
9
9
|
|
|
10
10
|
[project]
|
|
11
11
|
name = "conquer3d"
|
|
12
|
-
version = "0.
|
|
12
|
+
version = "0.2.0"
|
|
13
13
|
description = "Geometric Cuda Tool Box"
|
|
14
14
|
readme = "README.md"
|
|
15
15
|
license = {text = "MIT"}
|
|
16
16
|
authors = [
|
|
17
17
|
{name = "Do Hoang Khoi", email = "khoido8899@gmail.com"}
|
|
18
18
|
]
|
|
19
|
-
requires-python = ">=3.
|
|
19
|
+
requires-python = ">=3.9"
|
|
20
20
|
keywords = ["geometry"]
|
|
21
21
|
dependencies = [
|
|
22
22
|
"torch>=2.0.0",
|
|
@@ -49,15 +49,15 @@ exclude = ["examples*", "tests*"]
|
|
|
49
49
|
|
|
50
50
|
[tool.black]
|
|
51
51
|
line-length = 100
|
|
52
|
-
target-version = ["
|
|
52
|
+
target-version = ["py39"]
|
|
53
53
|
|
|
54
54
|
[tool.ruff]
|
|
55
55
|
line-length = 100
|
|
56
|
-
target-version = "
|
|
56
|
+
target-version = "py39"
|
|
57
57
|
select = ["E", "F", "W"]
|
|
58
58
|
|
|
59
59
|
[tool.mypy]
|
|
60
|
-
python_version = "3.
|
|
60
|
+
python_version = "3.9"
|
|
61
61
|
warn_return_any = true
|
|
62
62
|
warn_unused_configs = true
|
|
63
63
|
disallow_untyped_defs = false
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|