nebula-sdk 0.0.1__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.
- nebula_sdk-0.0.1/PKG-INFO +40 -0
- nebula_sdk-0.0.1/README.md +19 -0
- nebula_sdk-0.0.1/nebula/__init__.py +7 -0
- nebula_sdk-0.0.1/pyproject.toml +33 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nebula-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for Nebula (name reservation placeholder).
|
|
5
|
+
Project-URL: Homepage, https://trynebula.ai
|
|
6
|
+
Project-URL: Documentation, https://docs.trynebula.ai
|
|
7
|
+
Project-URL: Repository, https://github.com/nebula-agi/nebula-sdks
|
|
8
|
+
Author-email: Nebula AI Inc <support@trynebula.ai>
|
|
9
|
+
License-Expression: MIT
|
|
10
|
+
Keywords: ai,embeddings,memory,nebula,rag,search,vector
|
|
11
|
+
Classifier: Development Status :: 1 - Planning
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Requires-Python: >=3.10
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
|
|
22
|
+
# nebula-sdk
|
|
23
|
+
|
|
24
|
+
Official Python SDK for [Nebula](https://trynebula.ai).
|
|
25
|
+
|
|
26
|
+
This release (`0.0.1`) is a **name-reservation placeholder**. The real SDK
|
|
27
|
+
will be published here in an upcoming release at a synchronized version
|
|
28
|
+
shared with `@nebula-ai/sdk` on npm.
|
|
29
|
+
|
|
30
|
+
Until then, install the existing SDK:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install nebula-client
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Links
|
|
37
|
+
|
|
38
|
+
- Homepage: https://trynebula.ai
|
|
39
|
+
- Documentation: https://docs.trynebula.ai
|
|
40
|
+
- Source: https://github.com/nebula-agi/nebula-sdks
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# nebula-sdk
|
|
2
|
+
|
|
3
|
+
Official Python SDK for [Nebula](https://trynebula.ai).
|
|
4
|
+
|
|
5
|
+
This release (`0.0.1`) is a **name-reservation placeholder**. The real SDK
|
|
6
|
+
will be published here in an upcoming release at a synchronized version
|
|
7
|
+
shared with `@nebula-ai/sdk` on npm.
|
|
8
|
+
|
|
9
|
+
Until then, install the existing SDK:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install nebula-client
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Links
|
|
16
|
+
|
|
17
|
+
- Homepage: https://trynebula.ai
|
|
18
|
+
- Documentation: https://docs.trynebula.ai
|
|
19
|
+
- Source: https://github.com/nebula-agi/nebula-sdks
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "nebula-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Python SDK for Nebula (name reservation placeholder)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Nebula AI Inc", email = "support@trynebula.ai"},
|
|
14
|
+
]
|
|
15
|
+
keywords = ["nebula", "ai", "memory", "vector", "search", "embeddings", "rag"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.10",
|
|
22
|
+
"Programming Language :: Python :: 3.11",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Programming Language :: Python :: 3.13",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://trynebula.ai"
|
|
29
|
+
Documentation = "https://docs.trynebula.ai"
|
|
30
|
+
Repository = "https://github.com/nebula-agi/nebula-sdks"
|
|
31
|
+
|
|
32
|
+
[tool.hatch.build.targets.wheel]
|
|
33
|
+
packages = ["nebula"]
|