""" HippocampAIF Setup License: (c) 2026 Algorembrant, Rembrant Oyangoren Albeos """ from setuptools import setup, find_packages setup( name="hippocampaif", version="1.0.0", author="Algorembrant, Rembrant Oyangoren Albeos", description="Biologically grounded cognitive architecture — Free Energy, Hippocampal Fast-Binding, One-Shot Learning", long_description=open("README.md", encoding="utf-8").read(), long_description_content_type="text/markdown", packages=find_packages(), python_requires=">=3.10", install_requires=[ "numpy>=1.24", "scipy>=1.10", "Pillow>=9.0", ], extras_require={ "atari": [ "gymnasium[atari]>=1.0", "ale-py>=0.9", ], "dev": [ "pytest>=7.0", ], }, classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Bio-Informatics", ], )