File size: 1,065 Bytes
91aa364 ae37c72 91aa364 ae37c72 91aa364 | 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 | """
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",
],
)
|