Skip to content

Commit

Permalink
add long description and classifier
Browse files Browse the repository at this point in the history
  • Loading branch information
fsschneider committed Mar 1, 2019
1 parent 54d2fe3 commit 0e2da44
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,29 @@ def package_files(directory):
paths.append(os.path.join('..', path, filename))
return paths

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

BASELINE_FILES = package_files('deepobs/baselines/')

setuptools.setup(
name='deepobs',
version='1.1.0',
description='Deep Learning Optimizer Benchmark Suite',
author='Frank Schneider, Lukas Balles and Philipp Hennig,'
'University of Tuebingen, Methods of Machine Learning',
long_description=readme(),
author='Frank Schneider, Lukas Balles and Philipp Hennig,',
author_email='[email protected]',
license='MIT',
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires=[
'argparse', 'numpy', 'pandas', 'matplotlib', 'matplotlib2tikz',
'seaborn'
Expand Down

0 comments on commit 0e2da44

Please sign in to comment.