Skip to content

Commit

Permalink
Install specific version of matplotlib2tikz
Browse files Browse the repository at this point in the history
  • Loading branch information
fsschneider committed Oct 29, 2019
1 parent 3654225 commit b389a7c
Showing 1 changed file with 20 additions and 14 deletions.
34 changes: 20 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@


def readme():
with open('README.md') as f:
with open("README.md") as f:
return f.read()


setuptools.setup(
name='deepobs',
version='1.1.1',
description='Deep Learning Optimizer Benchmark Suite',
name="deepobs",
version="1.1.2",
description="Deep Learning Optimizer Benchmark Suite",
long_description=readme(),
author='Frank Schneider, Lukas Balles and Philipp Hennig,',
author_email='[email protected]',
license='MIT',
author="Frank Schneider, Lukas Balles and Philipp Hennig,",
author_email="[email protected]",
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
Expand All @@ -26,13 +27,18 @@ def readme():
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires=[
'argparse', 'numpy', 'pandas', 'matplotlib', 'matplotlib2tikz',
'seaborn'
"argparse",
"numpy",
"pandas",
"matplotlib",
"matplotlib2tikz==0.6.18",
"seaborn",
],
scripts=[
'deepobs/scripts/deepobs_prepare_data.sh',
'deepobs/scripts/deepobs_get_baselines.sh',
'deepobs/scripts/deepobs_plot_results.py',
'deepobs/scripts/deepobs_estimate_runtime.py'
"deepobs/scripts/deepobs_prepare_data.sh",
"deepobs/scripts/deepobs_get_baselines.sh",
"deepobs/scripts/deepobs_plot_results.py",
"deepobs/scripts/deepobs_estimate_runtime.py",
],
zip_safe=False)
zip_safe=False,
)

0 comments on commit b389a7c

Please sign in to comment.