-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 1.44 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
32
33
34
from io import open
from setuptools import setup, find_packages
def readme():
with open('README.md', encoding='utf-8') as f:
return f.read()
setup(name='tensorview',
version='0.4.1',
install_requires=['matplotlib', 'pandas>=0.24.1', 'pyecharts>=1.2.0',
'pyecharts_snapshot>=0.1.10' 'tensorflow>=2.0.0',
'linora>=0.9.3'],
description='Dynamic visualization training service in Jupyter Notebook for Keras tf.keras and others.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/Hourout/tensorview',
author='JinQing Lee',
author_email='[email protected]',
keywords=['keras-visualization', 'tensorflow-visualization', 'keras', 'tensorflow', 'tf.keras', 'plot', 'chart'],
license='Apache License Version 2.0',
classifiers=[
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Visualization',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
packages=find_packages(),
zip_safe=False)