-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 866 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
setup(
name="hyperscale",
version="0.1.0",
author="Marnix Koops",
author_email="marnixkoops@gmail.com",
description="Fast recommendations and vector similarity search.",
license="BSD",
keywords=[
"fast",
"scalable",
"personalization",
"recommender",
"recommender system",
"recommendation",
"ann",
"similarity search",
"vector search",
"ranking",
"customer experience",
"embeddings",
"approximate nearest neighbors",
"annoy",
],
url="http://github.com/marnixkoops/hyperscale",
long_description="""⚡ Fast recommendations and vector similarity search.
Hyperscale offers a simple Python API while leveraging ANN algorithms in C++ under
the hood for speed and scalability.""",
)