Files
2026-06-30 15:18:35 +03:00

31 lines
934 B
Python

"""
Setup script for the Agent with RAG Memory package.
This script defines the package metadata and registers a console
script entry point for the CLI. The console script is named ``kb``
and points to the ``main`` function in ``src.cli``.
"""
from setuptools import setup, find_packages
setup(
name="agent-s-rag-pamyatyu",
version="0.1.0",
description="Agent with RAG memory and a simple knowledge base.",
author="Artur Kuzakhmetov",
author_email="artur@example.com",
url="https://git.brojs.ru/kuzakhmetovartur/agent-s-rag-pamyatyu",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
install_requires=[], # No runtime dependencies
entry_points={
"console_scripts": [
"kb=src.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
)