@@ -22,18 +22,29 @@ def package_files(directory):
2222 paths .append (os .path .join ('..' , path , filename ))
2323 return paths
2424
25+ def readme ():
26+ with open ('README.md' ) as f :
27+ return f .read ()
2528
2629BASELINE_FILES = package_files ('deepobs/baselines/' )
2730
2831setuptools .setup (
2932 name = 'deepobs' ,
3033 version = '1.1.0' ,
3134 description = 'Deep Learning Optimizer Benchmark Suite' ,
32- author = 'Frank Schneider, Lukas Balles and Philipp Hennig,'
33- 'University of Tuebingen, Methods of Machine Learning ' ,
35+ long_description = readme (),
36+ author = 'Frank Schneider, Lukas Balles and Philipp Hennig, ' ,
3437 author_email = 'frank.schneider@tue.mpg.de' ,
3538 license = 'MIT' ,
3639 packages = setuptools .find_packages (),
40+ classifiers = [
41+ "Programming Language :: Python :: 3.6" ,
42+ "Intended Audience :: Developers" ,
43+ "Intended Audience :: Science/Research" ,
44+ "License :: OSI Approved :: MIT License" ,
45+ "Operating System :: OS Independent" ,
46+ "Topic :: Scientific/Engineering :: Artificial Intelligence" ,
47+ ],
3748 install_requires = [
3849 'argparse' , 'numpy' , 'pandas' , 'matplotlib' , 'matplotlib2tikz' ,
3950 'seaborn'
0 commit comments