forked from stared/livelossplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.24 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.24 KB
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
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='livelossplot',
version='0.2.2',
install_requires=['matplotlib', 'notebook'],
description='Live training loss plot in Jupyter Notebook for Keras, PyTorch and others.',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/stared/livelossplot',
author='Piotr Migdał',
author_email='pmigdal@gmail.com',
keywords=['keras', 'pytorch', 'plot', 'chart'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Jupyter',
'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)