-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·36 lines (32 loc) · 1.11 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
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*
import os.path
from setuptools import find_packages, setup
VERSION = '0.0.10'
# read the contents of your README file
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='kerashistoryplot',
version=VERSION,
description='Plot Keras model losses and metrics live in Jupyter',
url='https://github.com/ig248/kerashistoryplot',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=('tests', )),
entry_points={'console_scripts': []},
include_package_data=True,
author='Igor Gotlibovych',
author_email='[email protected]',
license='MIT',
install_requires=[],
extras_require={'matplotlib': ['matplotlib']},
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
)