hyperchip 0.0.1__py3-none-any.whl
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.
hyperchip/__init__.py
ADDED
hyperchip/cli.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import typer
|
|
2
|
+
|
|
3
|
+
from hyperchip import __version__
|
|
4
|
+
|
|
5
|
+
app = typer.Typer(no_args_is_help=True)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def version_callback(value: bool):
|
|
9
|
+
if value:
|
|
10
|
+
print(f"hyperchip {__version__}")
|
|
11
|
+
raise typer.Exit()
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@app.callback()
|
|
15
|
+
def main(
|
|
16
|
+
version: bool = typer.Option(
|
|
17
|
+
False, "--version", "-v", callback=version_callback, is_eager=True
|
|
18
|
+
),
|
|
19
|
+
):
|
|
20
|
+
"""Chip satellite imagery into ML-ready training data."""
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hyperchip
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Chip satellite imagery into ML-ready training data
|
|
5
|
+
Project-URL: Homepage, https://hyperstate.co
|
|
6
|
+
Project-URL: Repository, https://github.com/hyperstate-co/hyperchip
|
|
7
|
+
Author-email: Hyperstate <hello@hyperstate.co>
|
|
8
|
+
License-Expression: Apache-2.0
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Requires-Dist: typer>=0.15.0
|
|
11
|
+
Provides-Extra: dev
|
|
12
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
13
|
+
Requires-Dist: ruff>=0.8.0; extra == 'dev'
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# hyperchip
|
|
17
|
+
|
|
18
|
+
Chip satellite imagery into ML-ready training data.
|
|
19
|
+
|
|
20
|
+
Built by [Hyperstate](https://hyperstate.co) — foundation models for Earth intelligence.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
hyperchip/__init__.py,sha256=YswTMJvLkviokNpt0b1wlKup44-WnIyqNCwccVRHJS0,81
|
|
2
|
+
hyperchip/cli.py,sha256=kgJ8x7UnIudjeMEgXKtPtLRKCQv6RFeK6Gi9DQAs-u0,418
|
|
3
|
+
hyperchip-0.0.1.dist-info/METADATA,sha256=jrwb_iTDXPUOcxOKOGS-0tI1Tj4gomG23vlgGyUQ4WU,663
|
|
4
|
+
hyperchip-0.0.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
5
|
+
hyperchip-0.0.1.dist-info/entry_points.txt,sha256=3M_zcqfY3WzrGOIZGRXYnpimg4r_RFZ0USFz_62FrBw,48
|
|
6
|
+
hyperchip-0.0.1.dist-info/RECORD,,
|