File tree Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Expand file tree Collapse file tree 4 files changed +22
-7
lines changed Original file line number Diff line number Diff line change 1
1
# SimSIMD 📏
2
2
3
3
<div >
4
- <a href =" https://pypi.org /project/simsimd/ " > <img alt =" PyPI - Downloads " src =" https://img.shields.io/pypi/dm/ simsimd?label=pypi%20downloads " > </a >
4
+ <a href =" https://pepy.tech /project/simsimd " > <img alt =" PyPI " src =" https://static.pepy.tech/personalized-badge/ simsimd?period=month&units=abbreviation&left_color=black&right_color=blue&left_text=Python%20monthly%20installs " > </a >
5
5
<a href =" https://www.npmjs.com/package/simsimd " > <img alt =" npm " src =" https://img.shields.io/npm/dy/simsimd?label=npm%20dowloads " > </a >
6
6
<img alt =" GitHub code size in bytes " src =" https://img.shields.io/github/languages/code-size/ashvardanian/simsimd " >
7
7
</div >
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " simsimd" ,
3
3
"version" : " 3.5.4" ,
4
- "description" : " Vector Similarity Functions 3x-200x Faster than SciPy and NumPy" ,
4
+ "description" : " Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" ,
5
+ "homepage" : " https://github.com/ashvardanian/simsimd" ,
5
6
"author" : " Ash Vardanian" ,
6
7
"license" : " Apache 2.0" ,
7
8
"main" : " javascript/simsimd.js" ,
9
+ "keywords" : [
10
+ " vector" ,
11
+ " distance" ,
12
+ " similarity" ,
13
+ " search" ,
14
+ " ai" ,
15
+ " math" ,
16
+ " avx2" ,
17
+ " avx512" ,
18
+ " neon" ,
19
+ " sve" ,
20
+ " arm" ,
21
+ " x86" ,
22
+ " simd" ,
23
+ " f16"
24
+ ],
8
25
"type" : " module" ,
9
26
"scripts" : {
10
27
"test" : " node --test ./javascript/test" ,
26
43
"typescript" : " ^5.1.6" ,
27
44
"usearch" : " ^2.7.2"
28
45
}
29
- }
46
+ }
Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ static PyMethodDef simsimd_methods[] = {
476
476
static PyModuleDef simsimd_module = {
477
477
PyModuleDef_HEAD_INIT ,
478
478
.m_name = "SimSIMD" ,
479
- .m_doc = "Vector Similarity Functions 3x-200x Faster than SciPy and NumPy " ,
479
+ .m_doc = "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm " ,
480
480
.m_size = -1 ,
481
481
.m_methods = simsimd_methods ,
482
482
};
Original file line number Diff line number Diff line change 1
1
import os
2
2
import sys
3
- import platform
4
3
from os .path import dirname
5
4
from setuptools import setup , Extension
6
5
7
- import glob
8
6
import numpy
9
7
10
8
__version__ = open ("VERSION" , "r" ).read ().strip ()
68
66
author = "Ash Vardanian" ,
69
67
70
68
url = "https://github.com/ashvardanian/simsimd" ,
71
- description = "Vector Similarity Functions 3x-200x Faster than SciPy and NumPy " ,
69
+ description = "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm " ,
72
70
long_description = long_description ,
73
71
long_description_content_type = "text/markdown" ,
74
72
license = "Apache-2.0" ,
You can’t perform that action at this time.
0 commit comments