recce-cloud-nightly 1.27.0.20251130__py3-none-any.whl → 1.31.0.20260101__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.

Potentially problematic release.


This version of recce-cloud-nightly might be problematic. Click here for more details.

@@ -0,0 +1,49 @@
1
+ [project]
2
+ name = "recce-cloud"
3
+ dynamic = ["version", "readme"]
4
+ description = "Lightweight CLI for Recce Cloud operations"
5
+ authors = [{name = "InfuseAI Dev Team", email = "dev@infuseai.io"}]
6
+ requires-python = ">=3.9"
7
+ license = {text = "Apache-2.0"}
8
+
9
+ dependencies = [
10
+ "click>=7.1",
11
+ "requests>=2.28.1",
12
+ "rich>=12.0.0",
13
+ ]
14
+
15
+ classifiers = [
16
+ "Programming Language :: Python :: 3.9",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ "License :: OSI Approved :: Apache Software License",
22
+ "Operating System :: OS Independent",
23
+ "Development Status :: 4 - Beta",
24
+ ]
25
+
26
+ [project.scripts]
27
+ recce-cloud = "recce_cloud.cli:cloud_cli"
28
+
29
+ [project.urls]
30
+ "Bug Tracker" = "https://github.com/InfuseAI/recce/issues"
31
+
32
+ [build-system]
33
+ requires = ["hatchling"]
34
+ build-backend = "hatchling.build"
35
+
36
+ [tool.hatch.version]
37
+ path = "VERSION"
38
+ pattern = "(?P<version>.+)"
39
+
40
+ [tool.hatch.metadata]
41
+ allow-direct-references = true
42
+
43
+ [tool.hatch.metadata.hooks.custom]
44
+
45
+ [tool.hatch.build.targets.wheel]
46
+ packages = ["."]
47
+
48
+ [tool.hatch.build.targets.wheel.sources]
49
+ "." = "recce_cloud"