-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.16 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 1.16 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
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='zikra',
version='1.0.1',
description='Persistent memory for AI agents — FastAPI + SQLite + sqlite-vec, with optional PostgreSQL',
long_description=long_description,
long_description_content_type='text/markdown',
author='Zikra Contributors',
license='MIT',
packages=find_packages(),
python_requires='>=3.10',
install_requires=[
'fastapi>=0.111.0',
'uvicorn>=0.29.0',
'httpx>=0.27.0',
'sqlite-vec>=0.1.1',
'aiosqlite>=0.19.0',
'python-dotenv>=1.0.0',
'mcp[cli]>=1.0.0',
'starlette>=0.37.0',
],
extras_require={
'postgres': ['asyncpg>=0.29.0'],
'full': ['asyncpg>=0.29.0'],
},
entry_points={
'console_scripts': [
'zikra = zikra.__main__:main',
],
},
classifiers=[
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)