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 7aadd0e commit bafc072Copy full SHA for bafc072
setup.py
@@ -2,13 +2,15 @@
2
from setuptools import find_packages
3
4
5
+version = '0.1.1'
6
+
7
setup(name='keras-vis',
- version='0.1.1',
- description='Network visualization toolkit for keras',
8
+ version=version,
9
+ description='Neural Network visualization toolkit for keras',
10
author='Raghavendra Kotikalapudi',
11
author_email='[email protected]',
12
url='https://github.com/raghakot/keras-vis',
- download_url='https://github.com/raghakot/keras-vis/tarball/0.1',
13
+ download_url='https://github.com/raghakot/keras-vis/tarball/{}'.format(version),
14
license='MIT',
15
install_requires=['keras', 'imageio'],
16
packages=find_packages())
0 commit comments