File size: 1,072 Bytes
3998ca4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | """
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",
],
)
|