-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54d2fe3
commit 0e2da44
Showing
1 changed file
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
|