-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 998 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup, find_packages
# Be sure to update the version number in both "setup.py" and "meta.yaml" files, and the README and CITATION versions.
setup(
name='tensorflow-engram',
version='0.1.0',
packages=find_packages(),
author='Daniel Szelogowski',
description='A Python package for Engram Neural Networks, adding biologically-inspired Hebbian memory and engram layers to TensorFlow/Keras models, supporting memory traces, plasticity, attention, and sparsity for neural sequence learning.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://danielathome19.github.io/Engram-Neural-Network',
project_urls={
'Documentation': 'https://danielathome19.github.io/Engram-Neural-Network',
'Source': 'https://github.com/danielathome19/Engram-Neural-Network',
'Tracker': 'https://github.com/danielathome19/Engram-Neural-Network/issues',
},
python_requires='>=3.12',
)