chiasm-bridge / setup.py
MongooseReborn's picture
Initial Release: ChiasmBridge Universal Cross-Modal & Dimension-Agnostic Neural Adapter v1.0
0e86f35 verified
Raw
History Blame Contribute Delete
661 Bytes
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",
)