We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c66591d commit a1102bfCopy full SHA for a1102bf
1 file changed
setup.py
@@ -3,8 +3,10 @@
3
with open('README.md') as f:
4
long_description = f.read()
5
6
+version='0.1.2'
7
+
8
setup(name='bindsnet',
- version='0.1',
9
+ version=version,
10
description='Spiking neural networks for ML in Python',
11
license='AGPL-3.0',
12
long_description=long_description,
@@ -14,7 +16,7 @@
14
16
author_email='djsaunde@cs.umass.edu',
15
17
packages=['bindsnet'],
18
zip_safe=False,
- download_url='https://github.com/Hananel-Hazan/bindsnet/archive/0.1.tar.gz',
19
+ download_url='https://github.com/Hananel-Hazan/bindsnet/archive/%s.tar.gz' % version,
20
install_requires=['numpy>=1.14.2',
21
'torch>=0.4.0',
22
'tqdm>=4.19.9',
0 commit comments