-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial implementation of the ingestion API
- Loading branch information
1 parent
ff69164
commit bdf72cd
Showing
14 changed files
with
831 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Because `setuptools-scm` tries to include every single file known to Git, | ||
# we trim that down to include only the Python files themselves and manadatory | ||
# package metadata. | ||
|
||
global-exclude * | ||
include pyproject.toml | ||
include MANIFEST.in | ||
recursive-include src *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[project] | ||
name = "tiledb-vector-search" | ||
description = "TileDB Vector Search Python client" | ||
readme = "./README.md" | ||
dynamic = ["version"] | ||
|
||
dependencies = [ | ||
"tiledb-cloud>=0.10.5", | ||
"tiledb>=0.15.2", | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://tiledb.com" | ||
repository = "https://github.com/TileDB-Inc/feature-vector-prototype" | ||
|
||
|
||
[build-system] | ||
requires = ["setuptools>=42", "wheel", "setuptools_scm>=6"] | ||
|
||
[tool.setuptools] | ||
zip-safe = false | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.setuptools_scm] | ||
root = "../.." | ||
write_to = "apis/python/src/tiledb/vector_search/version.py" | ||
|
||
[tool.ruff] | ||
extend-select = ["I"] | ||
|
||
[tool.ruff.isort] | ||
known-first-party = ["tiledb"] | ||
force-single-line = true | ||
single-line-exclusions = ["typing", "typing_extensions"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
numpy==1.24.3 | ||
tiledb-cloud==0.10.5 | ||
tiledb==0.21.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Minimal setup.py to enable editable install (pip install -e .). | ||
|
||
import setuptools | ||
|
||
setuptools.setup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from .ingestion import ingest | ||
|
||
__all__ = [ | ||
"ingest", | ||
] |
Oops, something went wrong.