polybind 0.0.1__py3-none-any.whl

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.
polybind/__about__.py ADDED
@@ -0,0 +1 @@
1
+ __version__ = "0.0.1"
polybind/__init__.py ADDED
@@ -0,0 +1,3 @@
1
+ from .__about__ import __version__
2
+ from .core import cat
3
+
polybind/core.py ADDED
@@ -0,0 +1,5 @@
1
+ import numpy as np
2
+
3
+
4
+ def cat(arr1, arr2):
5
+ return np.concatenate([arr1, arr2])
File without changes
polybind/utils.py ADDED
@@ -0,0 +1,2 @@
1
+
2
+
@@ -0,0 +1,48 @@
1
+ Metadata-Version: 2.4
2
+ Name: polybind
3
+ Version: 0.0.1
4
+ Project-URL: Source, https://github.com/mohammadraziei/polybind
5
+ Project-URL: Issues, https://github.com/mohammadraziei/polybind/issues
6
+ Project-URL: Documentation, https://mohammadraziei.github.io/polybind
7
+ Author-email: Mohammad Raziei <mohammadraziei1375@gmail.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE.txt
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3 :: Only
15
+ Classifier: Programming Language :: Python :: 3.7
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Programming Language :: Python :: Implementation :: CPython
23
+ Classifier: Programming Language :: Python :: Implementation :: PyPy
24
+ Requires-Python: >=3.7
25
+ Requires-Dist: numpy
26
+ Description-Content-Type: text/markdown
27
+
28
+ # polybind
29
+
30
+ <!--[![PyPI - Version](https://img.shields.io/pypi/v/behsan-text-to-vec.svg)](https://pypi.org/project/behsan-text-to-vec)
31
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/behsan-text-to-vec.svg)](https://pypi.org/project/behsan-text-to-vec)
32
+ -->
33
+ -----
34
+
35
+ **Table of Contents**
36
+
37
+ - [Installation](#installation)
38
+ - [License](#license)
39
+
40
+ ## Installation
41
+
42
+ ```console
43
+ pip install polybind
44
+ ```
45
+
46
+ ## License
47
+
48
+ `polybind` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,9 @@
1
+ polybind/__about__.py,sha256=sXLh7g3KC4QCFxcZGBTpG2scR7hmmBsMjq6LqRptkRg,22
2
+ polybind/__init__.py,sha256=rf23_u1-BHIfmqmzhdqARSL0YJ3bXKZyXSMPVrohWsM,58
3
+ polybind/core.py,sha256=ye57zH1QCRD9UfX7SE7csQGTbJrEq4YX83nTxE9R9oc,82
4
+ polybind/utils.py,sha256=daEdpEyAJIa8b2VkCqSKcw8PaExcB6Qro80XNes_sHA,2
5
+ polybind/resources/PLACE_YOUR_FILES_HERE,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ polybind-0.0.1.dist-info/METADATA,sha256=gtWxXusGDPk6BoOmNKOagvQilOnR0RhiWfYOxEXHpJo,1713
7
+ polybind-0.0.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
8
+ polybind-0.0.1.dist-info/licenses/LICENSE.txt,sha256=sr2qTRubSb56wft25azWSxQpcDVMAxR-LV8ho-8_oO4,1109
9
+ polybind-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023-present Mohammad Raziei mohammadraziei1375@gmail.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.