-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (42 loc) · 1.3 KB
/
setup.py
File metadata and controls
43 lines (42 loc) · 1.3 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
43
from setuptools import setup, find_packages
setup(
name="pyvector",
version="0.1.0",
description="Lightweight MCP vector database for local LLMs",
author="PyVector Team",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"numpy>=1.21.0",
"pydantic>=2.0.0",
],
extras_require={
"faiss": ["faiss-cpu>=1.7.0"],
"embeddings": ["sentence-transformers>=2.2.0"],
"full": ["faiss-cpu>=1.7.0", "sentence-transformers>=2.2.0"],
"mcp": ["mcp>=1.0.0"],
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
"mypy>=1.0.0",
],
},
entry_points={
"console_scripts": [
"pyvector-server=pyvector.server:main",
"pyvector-mcp=start_mcp_server:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)