lexrag / setup.py
GautamKishore's picture
Upload folder using huggingface_hub
18e58fa verified
Raw
History Blame Contribute Delete
424 Bytes
"""
LexRAG — Legal Intelligence Terminal
=====================================
Hybrid RAG (Retrieval-Augmented Generation) system for UAE & Indian law,
taxation, accounting standards, and corporate compliance.
Built by Evolucent AI (https://evolucentai.com)
Engineered by Eulogik (https://eulogik.com)
"""
from setuptools import setup, find_packages
setup(
packages=find_packages(),
include_package_data=True,
)