hybit-python 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_python-0.0.1/PKG-INFO +19 -0
- hybit_python-0.0.1/README.md +3 -0
- hybit_python-0.0.1/hybit_python/__init__.py +2 -0
- hybit_python-0.0.1/hybit_python.egg-info/PKG-INFO +19 -0
- hybit_python-0.0.1/hybit_python.egg-info/SOURCES.txt +7 -0
- hybit_python-0.0.1/hybit_python.egg-info/dependency_links.txt +1 -0
- hybit_python-0.0.1/hybit_python.egg-info/top_level.txt +1 -0
- hybit_python-0.0.1/setup.cfg +4 -0
- hybit_python-0.0.1/setup.py +16 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hybit-python
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official namespace reservation for hybit-python
|
|
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-python
|
|
18
|
+
|
|
19
|
+
Official reserved namespace for the HyBit Vector Database ecosystem.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hybit-python
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official namespace reservation for hybit-python
|
|
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-python
|
|
18
|
+
|
|
19
|
+
Official reserved namespace for the HyBit Vector Database ecosystem.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hybit_python
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='hybit-python',
|
|
5
|
+
version='0.0.1',
|
|
6
|
+
description='Official namespace reservation for hybit-python',
|
|
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
|
+
)
|