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.
Files changed (32) hide show
  1. {conquer3d-0.1.9 → conquer3d-0.2.0}/PKG-INFO +3 -2
  2. {conquer3d-0.1.9 → conquer3d-0.2.0}/README.md +1 -0
  3. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/PKG-INFO +3 -2
  4. {conquer3d-0.1.9 → conquer3d-0.2.0}/pyproject.toml +5 -5
  5. {conquer3d-0.1.9 → conquer3d-0.2.0}/LICENSE +0 -0
  6. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/_C.pyi +0 -0
  7. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/_C.so +0 -0
  8. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/__init__.py +0 -0
  9. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/bvh.cpp +0 -0
  10. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/gs_bvh.cpp +0 -0
  11. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/kdtree.cpp +0 -0
  12. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/data_structure/pgs_bvh.cpp +0 -0
  13. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/primitive/gs.cpp +0 -0
  14. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/binds/primitive/pgs.cpp +0 -0
  15. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/data_structure/bvh.cu +0 -0
  16. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/data_structure/kdtree.cu +0 -0
  17. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/gs.cu +0 -0
  18. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/gs_aabb.cu +0 -0
  19. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/pgs.cu +0 -0
  20. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/primitive/pgs_aabb.cu +0 -0
  21. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/csrc/pybind.cpp +0 -0
  22. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/data_structure/__init__.py +0 -0
  23. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/__init__.py +0 -0
  24. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/gs.py +0 -0
  25. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d/primitive/pgs.py +0 -0
  26. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/SOURCES.txt +0 -0
  27. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/dependency_links.txt +0 -0
  28. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/not-zip-safe +0 -0
  29. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/requires.txt +0 -0
  30. {conquer3d-0.1.9 → conquer3d-0.2.0}/conquer3d.egg-info/top_level.txt +0 -0
  31. {conquer3d-0.1.9 → conquer3d-0.2.0}/setup.cfg +0 -0
  32. {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.1.9
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.10
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
  ```
@@ -34,6 +34,7 @@ pip install plotly open3d jupyter trimesh
34
34
  # Development
35
35
  ```bash
36
36
  pip install build twine
37
+ rm -rf dist
37
38
  python -m build --sdist
38
39
  twine upload dist/*
39
40
  ```
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: conquer3d
3
- Version: 0.1.9
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.10
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.1.9"
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.10"
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 = ["py310"]
52
+ target-version = ["py39"]
53
53
 
54
54
  [tool.ruff]
55
55
  line-length = 100
56
- target-version = "py310"
56
+ target-version = "py39"
57
57
  select = ["E", "F", "W"]
58
58
 
59
59
  [tool.mypy]
60
- python_version = "3.10"
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