Skip to content

Commit

Permalink
added searchspace.json
Browse files Browse the repository at this point in the history
  • Loading branch information
fmohr committed Oct 27, 2021
1 parent 55625d2 commit 7d4c2ed
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'naiveautoml', # How you named your package folder (MyLib)
packages = ['naiveautoml'], # Chose the same as "name"
version = '0.1', # Start with a small number and increase it with every change you make
version = '0.0.2', # Start with a small number and increase it with every change you make
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description = 'The official package for the Naive AutoML paper', # Give a short description about your library
author = 'Felix Mohr', # Type in your name
author_email = '[email protected]', # Type in your E-Mail
url = 'https://github.com/fmohr/naiveautoml', # Provide either the link to your github or to your website
download_url = 'https://github.com/fmohr/naiveautoml/archive/refs/tags/v0.1.tar.gz',
download_url = 'https://github.com/fmohr/naiveautoml/archive/refs/tags/v0.0.1.tar.gz',
keywords = ['AutoML', 'sklearn', 'naive', 'simple'],
install_requires=[
'numpy',
Expand All @@ -29,5 +29,6 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
package_data={'': ['searchspace.json']}
package_data={'': ['searchspace.json']},
include_package_data=True
)

0 comments on commit 7d4c2ed

Please sign in to comment.