""" ARIA: Adaptive Reliability & Integrity Attachment A lightweight reliability module for LLMs — like LoRA, but for inference-time reliability. """ from setuptools import setup, find_packages setup( name="aria-llm", version="0.3.0", description="Adaptive Reliability & Integrity Attachment for LLMs", long_description=open("README.md").read() if __import__("os").path.exists("README.md") else "", long_description_content_type="text/markdown", author="ARIA Research", license="Apache-2.0", packages=find_packages(), python_requires=">=3.8", install_requires=[ "torch>=2.0", "transformers>=4.30", ], extras_require={ "demo": ["matplotlib", "rich"], "benchmark": ["datasets"], }, classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], )