File size: 2,359 Bytes
a54fd97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
"""
Setup script for OmniMem.
"""

from setuptools import setup, find_packages
from pathlib import Path

readme_path = Path(__file__).parent / "README.md"
long_description = ""
if readme_path.exists():
    long_description = readme_path.read_text(encoding="utf-8")

setup(
    name="omnimem",
    version="0.1.0",
    author="OmniMem Team",
    description="Unified Multimodal Memory for Lifelong AI Agents",
    long_description=long_description,
    long_description_content_type="text/markdown",
    packages=find_packages(),
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Developers",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: Apache Software License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
        "Programming Language :: Python :: 3.11",
        "Programming Language :: Python :: 3.12",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
    ],
    python_requires=">=3.9",
    install_requires=[
        "numpy>=1.21.0",
        "openai>=1.0.0",
        "pydantic>=2.0.0",
        "tiktoken>=0.5.0",
        "rank_bm25>=0.2.2",
        "sentence-transformers>=2.2.0",
        "nltk>=3.8.0",
        "tqdm>=4.60.0",
    ],
    extras_require={
        "server": [
            "fastapi>=0.100.0",
            "uvicorn>=0.20.0",
            "python-multipart>=0.0.5",
        ],
        "audio": [
            "soundfile>=0.12.0",
            "librosa>=0.10.0",
        ],
        "visual": [
            "transformers>=4.30.0",
            "torch>=2.0.0",
            "open_clip_torch>=2.20.0",
            "Pillow>=9.0.0",
        ],
        "vector": [
            "faiss-cpu>=1.7.0",
        ],
        "all": [
            "fastapi>=0.100.0",
            "uvicorn>=0.20.0",
            "python-multipart>=0.0.5",
            "soundfile>=0.12.0",
            "librosa>=0.10.0",
            "transformers>=4.30.0",
            "torch>=2.0.0",
            "faiss-cpu>=1.7.0",
            "Pillow>=9.0.0",
        ],
        "dev": [
            "pytest>=7.0.0",
            "pytest-asyncio>=0.21.0",
        ],
    },
    entry_points={
        "console_scripts": [
            "omnimem-server=omni_memory.app:main",
        ],
    },
)