forked from agiresearch/A-mem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 962 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 962 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
#!/usr/bin/env python3
"""Setup script for the AMemCP package."""
from setuptools import find_packages, setup
# Read requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
# Filter out comments and empty lines
requirements = [line for line in requirements if line and not line.startswith("#")]
setup(
name="amem",
version="0.1.0",
description="Agentic Memory System - A memory system for agentic applications",
author="",
author_email="",
url="",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.11",
install_requires=requirements,
entry_points={
"console_scripts": [
"amem-server=run_server:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
],
)