Skip to content

Commit

Permalink
[wip] pip package
Browse files Browse the repository at this point in the history
  • Loading branch information
martyn committed Oct 23, 2016
1 parent bb24d14 commit e116071
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup.cfg
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
13 changes: 13 additions & 0 deletions setup.py
@@ -0,0 +1,13 @@
from distutils.core import setup
setup(
name = 'hyperchamber',
packages = ['hyperchamber'], # this must be the same as the name above
version = '0.1',
description = 'A tool for searching hyperparameters in models.',
author = 'Mikkel Garcia',
author_email = 'mikkel@255bits.com',
url = 'https://github.com/255BITS/hyperchamber', # use the URL to the github repo
download_url = 'https://github.com/255BITS/hyperchamber/tarball/0.1', # I'll explain this in a second
keywords = ['hyperparameter','neural network tuning','random parameter search', 'grid search'], # arbitrary keywords
classifiers = [],
)

0 comments on commit e116071

Please sign in to comment.