wildflow 0.0.1__tar.gz → 0.1.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.
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: wildflow
3
+ Version: 0.1.0
4
+ Summary: Modeling natural ecosystems
5
+ Author-email: wildflow <sergei@wildflow.ai>
6
+ License-Expression: MIT
7
+ Project-URL: repository, https://github.com/wildflowai/wildflow
8
+ Project-URL: documentation, https://docs.wildflow.ai
9
+ Keywords: coral-reefs,computer-vision,photogrammetry,3d-reconstruction,point-cloud,gaussian-splatting
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: wildflow-splat>=0.1.0
25
+ Provides-Extra: dev
26
+ Requires-Dist: pytest>=7.0; extra == "dev"
27
+ Requires-Dist: black>=22.0; extra == "dev"
28
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
29
+
30
+ # wildflow
31
+
32
+ Modeling natural ecosystems.
33
+
34
+ ## Installation
35
+
36
+ Install all components:
37
+
38
+ ```bash
39
+ pip install wildflow
40
+ ```
41
+
42
+ or install components separately:
43
+
44
+ ```bash
45
+ pip install wildflow-splat # Just the PLY processing tools
46
+ ```
47
+
48
+ ## Quick Start
49
+
50
+ ```python
51
+ from wildflow import splat
52
+
53
+ # Process PLY point cloud
54
+ config = splat.Config("model.ply")
55
+ patch = splat.Patch("output.bin")
56
+ config.add_patch(patch)
57
+
58
+ results = splat.split_point_cloud(config)
59
+ print(f"Processed {results['total_points_written']} points")
60
+ ```
61
+
62
+ ## Requirements
63
+
64
+ - Python 3.8+
65
+
66
+ ## License
67
+
68
+ MIT License
@@ -0,0 +1,39 @@
1
+ # wildflow
2
+
3
+ Modeling natural ecosystems.
4
+
5
+ ## Installation
6
+
7
+ Install all components:
8
+
9
+ ```bash
10
+ pip install wildflow
11
+ ```
12
+
13
+ or install components separately:
14
+
15
+ ```bash
16
+ pip install wildflow-splat # Just the PLY processing tools
17
+ ```
18
+
19
+ ## Quick Start
20
+
21
+ ```python
22
+ from wildflow import splat
23
+
24
+ # Process PLY point cloud
25
+ config = splat.Config("model.ply")
26
+ patch = splat.Patch("output.bin")
27
+ config.add_patch(patch)
28
+
29
+ results = splat.split_point_cloud(config)
30
+ print(f"Processed {results['total_points_written']} points")
31
+ ```
32
+
33
+ ## Requirements
34
+
35
+ - Python 3.8+
36
+
37
+ ## License
38
+
39
+ MIT License
@@ -0,0 +1,47 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "wildflow"
7
+ version = "0.1.0"
8
+ description = "Modeling natural ecosystems"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = "MIT"
12
+ keywords = ["coral-reefs","computer-vision", "photogrammetry", "3d-reconstruction", "point-cloud", "gaussian-splatting"]
13
+ authors = [
14
+ {name = "wildflow", email = "sergei@wildflow.ai"},
15
+ ]
16
+ classifiers = [
17
+ "Development Status :: 4 - Beta",
18
+ "Intended Audience :: Developers",
19
+ "Intended Audience :: Science/Research",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.8",
22
+ "Programming Language :: Python :: 3.9",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Programming Language :: Python :: 3.12",
26
+ "Topic :: Scientific/Engineering",
27
+ "Topic :: Multimedia :: Graphics :: 3D Modeling",
28
+ "Topic :: Software Development :: Libraries :: Python Modules",
29
+ ]
30
+ dependencies = [
31
+ "wildflow-splat>=0.1.0",
32
+ ]
33
+
34
+ [project.urls]
35
+ repository = "https://github.com/wildflowai/wildflow"
36
+ documentation = "https://docs.wildflow.ai"
37
+
38
+ [project.optional-dependencies]
39
+ dev = [
40
+ "pytest>=7.0",
41
+ "black>=22.0",
42
+ "ruff>=0.1.0",
43
+ ]
44
+
45
+ [tool.setuptools.packages.find]
46
+ where = ["."]
47
+ include = ["wildflow*"]
@@ -0,0 +1,18 @@
1
+ """
2
+ wildflow - AI tools for 3D computer vision and photogrammetry processing
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+
7
+ # Import available tools
8
+ try:
9
+ from wildflow import splat
10
+ __all__ = ["splat"]
11
+ except ImportError:
12
+ # splat module not available
13
+ __all__ = []
14
+
15
+ # Future modules:
16
+ # from wildflow import sfm # Structure-from-Motion processing
17
+ # from wildflow import gaussian # 3D Gaussian splatting utilities
18
+ # from wildflow import analysis # Computer vision analysis tools
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: wildflow
3
+ Version: 0.1.0
4
+ Summary: Modeling natural ecosystems
5
+ Author-email: wildflow <sergei@wildflow.ai>
6
+ License-Expression: MIT
7
+ Project-URL: repository, https://github.com/wildflowai/wildflow
8
+ Project-URL: documentation, https://docs.wildflow.ai
9
+ Keywords: coral-reefs,computer-vision,photogrammetry,3d-reconstruction,point-cloud,gaussian-splatting
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering
20
+ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
21
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
+ Requires-Python: >=3.8
23
+ Description-Content-Type: text/markdown
24
+ Requires-Dist: wildflow-splat>=0.1.0
25
+ Provides-Extra: dev
26
+ Requires-Dist: pytest>=7.0; extra == "dev"
27
+ Requires-Dist: black>=22.0; extra == "dev"
28
+ Requires-Dist: ruff>=0.1.0; extra == "dev"
29
+
30
+ # wildflow
31
+
32
+ Modeling natural ecosystems.
33
+
34
+ ## Installation
35
+
36
+ Install all components:
37
+
38
+ ```bash
39
+ pip install wildflow
40
+ ```
41
+
42
+ or install components separately:
43
+
44
+ ```bash
45
+ pip install wildflow-splat # Just the PLY processing tools
46
+ ```
47
+
48
+ ## Quick Start
49
+
50
+ ```python
51
+ from wildflow import splat
52
+
53
+ # Process PLY point cloud
54
+ config = splat.Config("model.ply")
55
+ patch = splat.Patch("output.bin")
56
+ config.add_patch(patch)
57
+
58
+ results = splat.split_point_cloud(config)
59
+ print(f"Processed {results['total_points_written']} points")
60
+ ```
61
+
62
+ ## Requirements
63
+
64
+ - Python 3.8+
65
+
66
+ ## License
67
+
68
+ MIT License
@@ -1,6 +1,8 @@
1
+ README.md
1
2
  pyproject.toml
2
- setup.py
3
+ wildflow/__init__.py
3
4
  wildflow.egg-info/PKG-INFO
4
5
  wildflow.egg-info/SOURCES.txt
5
6
  wildflow.egg-info/dependency_links.txt
7
+ wildflow.egg-info/requires.txt
6
8
  wildflow.egg-info/top_level.txt
@@ -0,0 +1,6 @@
1
+ wildflow-splat>=0.1.0
2
+
3
+ [dev]
4
+ pytest>=7.0
5
+ black>=22.0
6
+ ruff>=0.1.0
@@ -0,0 +1 @@
1
+ wildflow
wildflow-0.0.1/PKG-INFO DELETED
@@ -1,3 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: wildflow
3
- Version: 0.0.1
@@ -1,3 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools"]
3
- build-backend = "setuptools.build_meta"
wildflow-0.0.1/setup.py DELETED
@@ -1,7 +0,0 @@
1
- from setuptools import setup
2
-
3
- setup(
4
- name='wildflow',
5
- version='0.0.1',
6
- packages=[],
7
- )
@@ -1,3 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: wildflow
3
- Version: 0.0.1
File without changes