wildflow-splat 0.1.2__tar.gz → 0.1.3__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.
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/Cargo.lock +1 -1
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/Cargo.toml +1 -1
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/PKG-INFO +1 -1
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/meta-package/pyproject.toml +2 -2
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/native/lib.rs +1 -1
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/pyproject.toml +1 -1
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/.gitattributes +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/.github/workflows/build-wheels.yml +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/.github/workflows/publish.yml +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/.gitignore +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/LICENSE +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/README.md +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/clean.go +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/cleanup_splats.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/configs/q5.yaml +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/copy_cell.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/cell.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/colmap_reader.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/crop_colmap.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/grid.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/ply_reader.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/processor.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/types.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/core/visualizer.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/export_cell.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/export_cells.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/images/wildflow-3dgs-wf.svg +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/meta-package/.gitignore +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/meta-package/README.md +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/meta-package/wildflow/__init__.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/native/split.rs +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/plan.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/plot_colmap.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/plot_ply.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/ply_to_colmap_bin.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/requirements-dev.txt +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/run.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/setup.cfg +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/wildflow/__init__.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/wildflow/splat/__init__.py +0 -0
- {wildflow_splat-0.1.2 → wildflow_splat-0.1.3}/wildflow/splat/split.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "wildflow"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.3"
|
8
8
|
description = "Modeling natural ecosystems"
|
9
9
|
readme = "README.md"
|
10
10
|
requires-python = ">=3.8"
|
@@ -28,7 +28,7 @@ classifiers = [
|
|
28
28
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
29
29
|
]
|
30
30
|
dependencies = [
|
31
|
-
"wildflow-splat>=0.1.
|
31
|
+
"wildflow-splat>=0.1.3",
|
32
32
|
]
|
33
33
|
|
34
34
|
[project.urls]
|
@@ -4,7 +4,7 @@ mod split;
|
|
4
4
|
|
5
5
|
/// The main PyO3 module for wildflow.splat
|
6
6
|
#[pymodule]
|
7
|
-
fn
|
7
|
+
fn _core(m: &Bound<'_, PyModule>) -> PyResult<()> {
|
8
8
|
// Export split functionality
|
9
9
|
m.add_class::<split::Config>()?;
|
10
10
|
m.add_class::<split::Patch>()?;
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|