Skip to content

Commit f4834f6

Browse files
committed
Docs: Keywords and downloads
1 parent ac2ee97 commit f4834f6

File tree

4 files changed

+22
-7
lines changed

4 files changed

+22
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SimSIMD 📏
22

33
<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>
55
<a href="https://www.npmjs.com/package/simsimd"> <img alt="npm" src="https://img.shields.io/npm/dy/simsimd?label=npm%20dowloads"> </a>
66
<img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/ashvardanian/simsimd">
77
</div>

package.json

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,27 @@
11
{
22
"name": "simsimd",
33
"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",
56
"author": "Ash Vardanian",
67
"license": "Apache 2.0",
78
"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+
],
825
"type": "module",
926
"scripts": {
1027
"test": "node --test ./javascript/test",
@@ -26,4 +43,4 @@
2643
"typescript": "^5.1.6",
2744
"usearch": "^2.7.2"
2845
}
29-
}
46+
}

python/lib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ static PyMethodDef simsimd_methods[] = {
476476
static PyModuleDef simsimd_module = {
477477
PyModuleDef_HEAD_INIT,
478478
.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",
480480
.m_size = -1,
481481
.m_methods = simsimd_methods,
482482
};

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
import os
22
import sys
3-
import platform
43
from os.path import dirname
54
from setuptools import setup, Extension
65

7-
import glob
86
import numpy
97

108
__version__ = open("VERSION", "r").read().strip()
@@ -68,7 +66,7 @@
6866
author="Ash Vardanian",
6967
author_email="[email protected]",
7068
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",
7270
long_description=long_description,
7371
long_description_content_type="text/markdown",
7472
license="Apache-2.0",

0 commit comments

Comments
 (0)