Skip to content

Commit bafc072

Browse files
committed
fix download url
1 parent 7aadd0e commit bafc072

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
from setuptools import find_packages
33

44

5+
version = '0.1.1'
6+
57
setup(name='keras-vis',
6-
version='0.1.1',
7-
description='Network visualization toolkit for keras',
8+
version=version,
9+
description='Neural Network visualization toolkit for keras',
810
author='Raghavendra Kotikalapudi',
911
author_email='[email protected]',
1012
url='https://github.com/raghakot/keras-vis',
11-
download_url='https://github.com/raghakot/keras-vis/tarball/0.1',
13+
download_url='https://github.com/raghakot/keras-vis/tarball/{}'.format(version),
1214
license='MIT',
1315
install_requires=['keras', 'imageio'],
1416
packages=find_packages())

0 commit comments

Comments
 (0)