forked from BINDS-LAB-UMASS/bindsnet_experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 807 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open('README.md') as f:
long_description = f.read()
version = '0.1'
setup(
name='experiments',
version=version,
description='Experiments with BindsNET spiking neural network simulator',
license='MIT',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/djsaunde/bindsnet_experiments',
author='Daniel Saunders',
author_email='[email protected]',
packages=find_packages(),
zip_safe=False,
download_url='https://github.com/djsaunde/bindsnet_experiments/archive/%s.tar.gz' % version,
install_requires=[
'numpy>=1.14.2', 'torch>=0.4.1', 'matplotlib>=2.1.0', 'bindsnet>=0.1.7', 'PyYAML', 'tqdm', 'paramiko',
'scikit-learn'
],
)