-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (40 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
42 lines (40 loc) · 1.55 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
from pathlib import Path
# read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="embeddings_evaluator",
version="1.0.1",
description="Tool for analyzing and comparing embedding models through pairwise cosine similarity distributions",
long_description=long_description,
long_description_content_type="text/markdown",
author="Moudather Chelbi",
author_email="moudather.chelbi@gmail.com",
url="https://github.com/vinerya/embeddings_evaluator",
packages=find_packages(exclude=["examples", "examples.*", "scripts", "scripts.*", "outputs", "outputs.*", "docs", "docs.*"]),
install_requires=[
"numpy>=1.23.5",
"pandas>=1.5.3",
"plotly>=5.14.1",
"scipy>=1.10.1",
"scikit-learn>=1.2.0",
"faiss-cpu",
"qdrant-client>=1.7.0",
"matplotlib>=3.5.0"
],
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
keywords="embeddings, similarity, evaluation, faiss, visualization",
include_package_data=True,
zip_safe=False,
)