File size: 661 Bytes
0e86f35 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 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",
)
|