cursor-sdk 0.0.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,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cursor-sdk
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Placeholder. Install cursor-sdk >= 0.1.0 for the real package.
|
|
5
|
+
Author-email: Anysphere <support@cursor.com>
|
|
6
|
+
License: Proprietary - see LICENSE.md
|
|
7
|
+
License-File: LICENSE.md
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# cursor-sdk (placeholder)
|
|
12
|
+
|
|
13
|
+
This is the 0.0.0 name-reservation publish for `cursor-sdk`. The real
|
|
14
|
+
package ships as platform-specific wheels at version >= 0.1.0.
|
|
15
|
+
|
|
16
|
+
pip install --upgrade cursor-sdk
|
|
17
|
+
|
|
18
|
+
Documentation: https://docs.cursor.com/sdk
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling>=1.25"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cursor-sdk"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Placeholder. Install cursor-sdk >= 0.1.0 for the real package."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = { text = "Proprietary - see LICENSE.md" }
|
|
12
|
+
authors = [{ name = "Anysphere", email = "support@cursor.com" }]
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build.targets.sdist]
|
|
15
|
+
include = ["src/cursor_sdk/**", "README.md", "LICENSE.md", "pyproject.toml"]
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/cursor_sdk"]
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""cursor-sdk placeholder.
|
|
2
|
+
|
|
3
|
+
This is a 0.0.0 name-reservation publish. The real cursor-sdk wheel
|
|
4
|
+
ships as platform-specific binary wheels at version >= 0.1.0. Until
|
|
5
|
+
your environment resolves a real wheel, this stub raises at import to
|
|
6
|
+
prevent silently broken installs.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
raise ImportError(
|
|
10
|
+
"cursor-sdk 0.0.0 is a name-reservation placeholder. Install a "
|
|
11
|
+
"released version (>=0.1.0) for your platform: "
|
|
12
|
+
"`pip install --upgrade cursor-sdk`. See https://docs.cursor.com/sdk."
|
|
13
|
+
)
|