hybit 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.
- hybit-0.0.1/PKG-INFO +19 -0
- hybit-0.0.1/README.md +3 -0
- hybit-0.0.1/hybit/__init__.py +2 -0
- hybit-0.0.1/hybit.egg-info/PKG-INFO +19 -0
- hybit-0.0.1/hybit.egg-info/SOURCES.txt +7 -0
- hybit-0.0.1/hybit.egg-info/dependency_links.txt +1 -0
- hybit-0.0.1/hybit.egg-info/top_level.txt +1 -0
- hybit-0.0.1/setup.cfg +4 -0
- hybit-0.0.1/setup.py +16 -0
hybit-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hybit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for the HyBit Vector Database
|
|
5
|
+
Author: HyBit Technologies
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.7
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: classifier
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: requires-python
|
|
15
|
+
Dynamic: summary
|
|
16
|
+
|
|
17
|
+
# hybit
|
|
18
|
+
|
|
19
|
+
Official Python SDK for the HyBit Vector Database.
|
hybit-0.0.1/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hybit
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for the HyBit Vector Database
|
|
5
|
+
Author: HyBit Technologies
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.7
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Dynamic: author
|
|
11
|
+
Dynamic: classifier
|
|
12
|
+
Dynamic: description
|
|
13
|
+
Dynamic: description-content-type
|
|
14
|
+
Dynamic: requires-python
|
|
15
|
+
Dynamic: summary
|
|
16
|
+
|
|
17
|
+
# hybit
|
|
18
|
+
|
|
19
|
+
Official Python SDK for the HyBit Vector Database.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hybit
|
hybit-0.0.1/setup.cfg
ADDED
hybit-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='hybit',
|
|
5
|
+
version='0.0.1',
|
|
6
|
+
description='Official Python SDK for the HyBit Vector Database',
|
|
7
|
+
long_description=open('README.md').read(),
|
|
8
|
+
long_description_content_type='text/markdown',
|
|
9
|
+
author='HyBit Technologies',
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
classifiers=[
|
|
12
|
+
'Programming Language :: Python :: 3',
|
|
13
|
+
'Operating System :: OS Independent',
|
|
14
|
+
],
|
|
15
|
+
python_requires='>=3.7',
|
|
16
|
+
)
|