5
5
6
6
7
7
def readme ():
8
- with open (' README.md' ) as f :
8
+ with open (" README.md" ) as f :
9
9
return f .read ()
10
10
11
+
11
12
setuptools .setup (
12
- name = ' deepobs' ,
13
- version = ' 1.1.1' ,
14
- description = ' Deep Learning Optimizer Benchmark Suite' ,
13
+ name = " deepobs" ,
14
+ version = " 1.1.2" ,
15
+ description = " Deep Learning Optimizer Benchmark Suite" ,
15
16
long_description = readme (),
16
- author = ' Frank Schneider, Lukas Balles and Philipp Hennig,' ,
17
-
18
- license = ' MIT' ,
17
+ author = " Frank Schneider, Lukas Balles and Philipp Hennig," ,
18
+
19
+ license = " MIT" ,
19
20
packages = setuptools .find_packages (),
20
21
classifiers = [
21
22
"Programming Language :: Python :: 3.6" ,
@@ -26,13 +27,18 @@ def readme():
26
27
"Topic :: Scientific/Engineering :: Artificial Intelligence" ,
27
28
],
28
29
install_requires = [
29
- 'argparse' , 'numpy' , 'pandas' , 'matplotlib' , 'matplotlib2tikz' ,
30
- 'seaborn'
30
+ "argparse" ,
31
+ "numpy" ,
32
+ "pandas" ,
33
+ "matplotlib" ,
34
+ "matplotlib2tikz==0.6.18" ,
35
+ "seaborn" ,
31
36
],
32
37
scripts = [
33
- ' deepobs/scripts/deepobs_prepare_data.sh' ,
34
- ' deepobs/scripts/deepobs_get_baselines.sh' ,
35
- ' deepobs/scripts/deepobs_plot_results.py' ,
36
- ' deepobs/scripts/deepobs_estimate_runtime.py'
38
+ " deepobs/scripts/deepobs_prepare_data.sh" ,
39
+ " deepobs/scripts/deepobs_get_baselines.sh" ,
40
+ " deepobs/scripts/deepobs_plot_results.py" ,
41
+ " deepobs/scripts/deepobs_estimate_runtime.py" ,
37
42
],
38
- zip_safe = False )
43
+ zip_safe = False ,
44
+ )
0 commit comments