-
Notifications
You must be signed in to change notification settings - Fork 661
/
setup.py
24 lines (21 loc) · 805 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
from setuptools import setup
from setuptools import find_packages
version = '0.5.0'
setup(name='keras-vis',
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/{}'.format(version),
license='MIT',
install_requires=['keras>=2.0', 'six', 'scikit-image', 'matplotlib', 'h5py'],
extras_require={
'vis_utils': ['Pillow', 'imageio'],
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
include_package_data=True,
packages=find_packages())