Skip to content

Commit

Permalink
fix download url
Browse files Browse the repository at this point in the history
  • Loading branch information
raghakot committed Dec 24, 2016
1 parent 7aadd0e commit bafc072
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
from setuptools import find_packages


version = '0.1.1'

setup(name='keras-vis',
version='0.1.1',
description='Network visualization toolkit for keras',
version=version,
description='Neural Network visualization toolkit for keras',
author='Raghavendra Kotikalapudi',
author_email='[email protected]',
url='https://github.com/raghakot/keras-vis',
download_url='https://github.com/raghakot/keras-vis/tarball/0.1',
download_url='https://github.com/raghakot/keras-vis/tarball/{}'.format(version),
license='MIT',
install_requires=['keras', 'imageio'],
packages=find_packages())

0 comments on commit bafc072

Please sign in to comment.