from setuptools import setup, find_packages setup( name="adaptive-llm-framework", version="1.0.0", author="Research Team", description="Adaptive LLM Novelty Suppression Framework", long_description=open("README.md").read(), long_description_content_type="text/markdown", packages=find_packages(), install_requires=[ "torch>=2.0.0", "transformers>=4.35.0", "gradio==6.16.0", "sentence-transformers>=2.2.0", "numpy>=1.24.0", "pandas>=2.0.0", "matplotlib>=3.7.0", "scikit-learn>=1.3.0", "scipy>=1.10.0", "bert-score>=0.3.13", "sacrebleu>=2.4.0", "accelerate>=0.24.0", "bitsandbytes>=0.41.0", "datasets>=2.14.0", "evaluate>=0.4.0", "tqdm>=4.65.0", "python-dotenv>=1.0.0", "pyyaml>=6.0", ], python_requires=">=3.9", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], )