lspd-cli 0.0.0a0__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.
- lspd_cli-0.0.0a0/LICENSE +4 -0
- lspd_cli-0.0.0a0/PKG-INFO +15 -0
- lspd_cli-0.0.0a0/README.md +4 -0
- lspd_cli-0.0.0a0/pyproject.toml +25 -0
- lspd_cli-0.0.0a0/uv.lock +8 -0
lspd_cli-0.0.0a0/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: lspd-cli
|
|
3
|
+
Version: 0.0.0a0
|
|
4
|
+
Summary: Placeholder reserving the lspd-cli name for Lightspeed AI. Not a usable release.
|
|
5
|
+
Author: Lightspeed AI, inc.
|
|
6
|
+
License-Expression: LicenseRef-Proprietary
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# lspd-cli
|
|
13
|
+
|
|
14
|
+
Placeholder. This name is reserved for a forthcoming Lightspeed AI package and
|
|
15
|
+
carries no usable code.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "lspd-cli"
|
|
3
|
+
# A pre-release is ignored by installers unless --pre is passed, so
|
|
4
|
+
# an install of this name finds nothing even before the release is yanked.
|
|
5
|
+
version = "0.0.0a0"
|
|
6
|
+
description = "Placeholder reserving the lspd-cli name for Lightspeed AI. Not a usable release."
|
|
7
|
+
readme = "README.md"
|
|
8
|
+
# Deliberately permissive: the placeholder must not advertise the interpreter
|
|
9
|
+
# floor the real package will carry, which is still undecided.
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "LicenseRef-Proprietary"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
13
|
+
authors = [{ name = "Lightspeed AI, inc." }]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[build-system]
|
|
19
|
+
requires = ["hatchling"]
|
|
20
|
+
build-backend = "hatchling.build"
|
|
21
|
+
|
|
22
|
+
[tool.hatch.build.targets.wheel]
|
|
23
|
+
# Metadata only: the placeholder ships NO importable module, so it cannot
|
|
24
|
+
# shadow the real package's import name if it is ever installed.
|
|
25
|
+
bypass-selection = true
|