-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathsetup.py
31 lines (29 loc) · 1.22 KB
/
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
25
26
27
28
29
30
31
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='deepreplay',
version='0.1.2a2',
install_requires=['matplotlib', 'numpy', 'h5py', 'seaborn', 'keras', 'scikit-learn'],
description='"Hyper-parameters in Action!" visualizing tool for Keras models.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/dvgodoy/deepreplay',
author='Daniel Voigt Godoy',
author_email='[email protected]',
keywords=['keras', 'hyper-parameters', 'animation', 'plot', 'chart'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'
],
packages=find_packages(),
zip_safe=False)