from setuptools import setup, find_packages setup( name="chiasm-bridge", version="0.1.0", description="Cross-Architecture Neural Adapter powered by Sparse Associative Memory (SAM)", author="Mongoose & Kalos Engine Architecture Team @ BlackForest Studio", author_email="blackforest.team@proton.me", url="https://github.com/MongooseReborn/chiasm-bridge", packages=find_packages(), install_requires=[ "torch>=2.0.0", ], classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], python_requires=">=3.8", )