barclays-rag-test/rag_test_app/setup.py
Vadym Samoilenko ed040ea497 init: add RAG test app with Excel/CSV export
- rag_test_app: OpenAI Assistants benchmark tool
- TEST_TO_RUN: Barclays test configs (Internal Banners, Social Posts, Display Banners, PPC)
- Added report.xlsx + report.csv export alongside HTML report

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-10 13:29:14 +01:00

31 lines
No EOL
941 B
Python

from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read().splitlines()
setup(
name="rag-test-app",
version="0.1.0",
author="Your Name",
author_email="your.email@example.com",
description="A tool for testing OpenAI assistants with RAG capabilities",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/rag-test-app",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=requirements,
entry_points={
"console_scripts": [
"rag-test=cli:main",
],
},
)