-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 895 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (34 loc) · 895 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
28
29
30
31
32
33
34
35
36
"""Setup script for Synapse AKG."""
from setuptools import setup, find_packages
setup(
name="synapse",
version="0.1.0",
description="Agentic Knowledge Graph with Hybrid Search",
author="di5rupt0r",
packages=find_packages(),
python_requires=">=3.11",
install_requires=[
"fastapi>=0.100.0",
"redis>=4.5.0",
"redisearch>=2.0.0",
"sentence-transformers>=2.2.0",
"torch>=2.0.0",
"numpy>=1.24.0",
"pydantic>=2.0.0",
"uvicorn>=0.20.0",
"python-multipart>=0.0.6",
],
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"pytest-benchmark>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"ruff>=0.1.0",
"bandit>=1.7.0",
"safety>=2.3.0",
]
},
)