File size: 417 Bytes
579f3f2
 
 
7446568
579f3f2
 
 
7446568
 
579f3f2
7446568
 
 
 
579f3f2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
)