-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 855 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 855 Bytes
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
from setuptools import setup, find_packages
setup(
name="vecman",
version="2.7.10",
packages=find_packages(),
install_requires=[
"numpy>=1.17",
"torch>=2.0.0",
"sentence-transformers>=4.0.0",
"datasets>=2.20.0",
"google-generativeai>=0.8.0",
"tqdm>=4.65.0"
],
author="Loaii abdalslam",
author_email="loaiabdalslam@gmail.com",
description="VECMAN - A VQ-VAE based vector database for text embeddings and retrieval",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/Vec1man/vecman",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
)