from setuptools import setup, find_packages | |
setup( | |
name="cognitive_net", | |
version="0.1.0", | |
packages=find_packages(), | |
install_requires=[ | |
"torch>=1.9.0", | |
"numpy>=1.19.0" | |
], | |
author="VLabTech", | |
description="A cognitive neural network with dynamic memory and emotional modulation", | |
keywords="neural network, cognitive computing, deep learning", | |
python_requires=">=3.7" | |
) |