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.
@@ -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,3 @@
1
+ # hybit-python
2
+
3
+ Official reserved namespace for the HyBit Vector Database ecosystem.
@@ -0,0 +1,2 @@
1
+ # Placeholder for hybit-python
2
+ __version__ = '0.0.1'
@@ -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,7 @@
1
+ README.md
2
+ setup.py
3
+ hybit_python/__init__.py
4
+ hybit_python.egg-info/PKG-INFO
5
+ hybit_python.egg-info/SOURCES.txt
6
+ hybit_python.egg-info/dependency_links.txt
7
+ hybit_python.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ hybit_python
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )