vectros 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.
- vectros-0.0.1/PKG-INFO +21 -0
- vectros-0.0.1/README.md +11 -0
- vectros-0.0.1/pyproject.toml +15 -0
- vectros-0.0.1/setup.cfg +4 -0
- vectros-0.0.1/vectros/__init__.py +1 -0
- vectros-0.0.1/vectros.egg-info/PKG-INFO +21 -0
- vectros-0.0.1/vectros.egg-info/SOURCES.txt +7 -0
- vectros-0.0.1/vectros.egg-info/dependency_links.txt +1 -0
- vectros-0.0.1/vectros.egg-info/top_level.txt +1 -0
vectros-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vectros
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Vectros API SDK for Python
|
|
5
|
+
License: MIT
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Vectros
|
|
12
|
+
|
|
13
|
+
Python SDK for the [Vectros API](https://vectros.ai) — an enterprise-grade platform
|
|
14
|
+
for hybrid search, structured data, and AI-native application primitives.
|
|
15
|
+
|
|
16
|
+
This package is a placeholder. The full SDK is coming soon.
|
|
17
|
+
|
|
18
|
+
## Learn more
|
|
19
|
+
|
|
20
|
+
- [Developer Portal](https://developers.vectros.ai)
|
|
21
|
+
- [API Reference](https://developers.vectros.ai/openapi.yaml)
|
vectros-0.0.1/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Vectros
|
|
2
|
+
|
|
3
|
+
Python SDK for the [Vectros API](https://vectros.ai) — an enterprise-grade platform
|
|
4
|
+
for hybrid search, structured data, and AI-native application primitives.
|
|
5
|
+
|
|
6
|
+
This package is a placeholder. The full SDK is coming soon.
|
|
7
|
+
|
|
8
|
+
## Learn more
|
|
9
|
+
|
|
10
|
+
- [Developer Portal](https://developers.vectros.ai)
|
|
11
|
+
- [API Reference](https://developers.vectros.ai/openapi.yaml)
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "vectros"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Vectros API SDK for Python"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
requires-python = ">=3.8"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
]
|
vectros-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Vectros Python SDK placeholder
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vectros
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Vectros API SDK for Python
|
|
5
|
+
License: MIT
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Vectros
|
|
12
|
+
|
|
13
|
+
Python SDK for the [Vectros API](https://vectros.ai) — an enterprise-grade platform
|
|
14
|
+
for hybrid search, structured data, and AI-native application primitives.
|
|
15
|
+
|
|
16
|
+
This package is a placeholder. The full SDK is coming soon.
|
|
17
|
+
|
|
18
|
+
## Learn more
|
|
19
|
+
|
|
20
|
+
- [Developer Portal](https://developers.vectros.ai)
|
|
21
|
+
- [API Reference](https://developers.vectros.ai/openapi.yaml)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vectros
|