issundb 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.
- issundb-0.0.0/PKG-INFO +22 -0
- issundb-0.0.0/README.md +7 -0
- issundb-0.0.0/issundb/__init__.py +7 -0
- issundb-0.0.0/issundb.egg-info/PKG-INFO +22 -0
- issundb-0.0.0/issundb.egg-info/SOURCES.txt +7 -0
- issundb-0.0.0/issundb.egg-info/dependency_links.txt +1 -0
- issundb-0.0.0/issundb.egg-info/top_level.txt +1 -0
- issundb-0.0.0/pyproject.toml +25 -0
- issundb-0.0.0/setup.cfg +4 -0
issundb-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: issundb
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Embedded graph database with vector and full-text search. Name placeholder; the first functional release is in progress.
|
|
5
|
+
Author-email: Hassan Abedi <hassan.abedi@obsidian.systems>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/IssunDB/issun-db
|
|
8
|
+
Project-URL: Repository, https://github.com/IssunDB/issun-db
|
|
9
|
+
Keywords: graph,database,vector-search,full-text-search,cypher
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Rust
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# IssunDB
|
|
17
|
+
|
|
18
|
+
Embedded graph database with vector search, full-text search, and Cypher query support, written in Rust.
|
|
19
|
+
|
|
20
|
+
This `0.0.0` release is a name placeholder. The first functional release is in progress.
|
|
21
|
+
|
|
22
|
+
See [github.com/IssunDB/issun-db](https://github.com/IssunDB/issun-db) for status.
|
issundb-0.0.0/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# IssunDB
|
|
2
|
+
|
|
3
|
+
Embedded graph database with vector search, full-text search, and Cypher query support, written in Rust.
|
|
4
|
+
|
|
5
|
+
This `0.0.0` release is a name placeholder. The first functional release is in progress.
|
|
6
|
+
|
|
7
|
+
See [github.com/IssunDB/issun-db](https://github.com/IssunDB/issun-db) for status.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: issundb
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Embedded graph database with vector and full-text search. Name placeholder; the first functional release is in progress.
|
|
5
|
+
Author-email: Hassan Abedi <hassan.abedi@obsidian.systems>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/IssunDB/issun-db
|
|
8
|
+
Project-URL: Repository, https://github.com/IssunDB/issun-db
|
|
9
|
+
Keywords: graph,database,vector-search,full-text-search,cypher
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Programming Language :: Rust
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.8
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# IssunDB
|
|
17
|
+
|
|
18
|
+
Embedded graph database with vector search, full-text search, and Cypher query support, written in Rust.
|
|
19
|
+
|
|
20
|
+
This `0.0.0` release is a name placeholder. The first functional release is in progress.
|
|
21
|
+
|
|
22
|
+
See [github.com/IssunDB/issun-db](https://github.com/IssunDB/issun-db) for status.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
issundb
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "issundb"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Embedded graph database with vector and full-text search. Name placeholder; the first functional release is in progress."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Hassan Abedi", email = "hassan.abedi@obsidian.systems" }]
|
|
13
|
+
keywords = ["graph", "database", "vector-search", "full-text-search", "cypher"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Programming Language :: Rust",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/IssunDB/issun-db"
|
|
22
|
+
Repository = "https://github.com/IssunDB/issun-db"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools]
|
|
25
|
+
packages = ["issundb"]
|
issundb-0.0.0/setup.cfg
ADDED