Metadata-Version: 1.1
Name: brains
Version: 0.0.4
Summary: Helps submit files to brains app
Home-page: https://github.com/dev-coop/brains-cli
Author: Eric Carmichael
Author-email: eric@ckcollab.com
License: MIT
Description: brains-cli
        ==========
        
        Command line interface to [brains](http://github.com/dev-coop/brains)
        
        
        installation
        ============
        
        ```pip install brains```
        
        
        
        usage
        =====
        
        ##### `> brains init`
        
        asks for user information and how to run the program, saves to `brains.yaml` in current directory
        
        ##### `> brains push [--dataset iris] [--description "My first try"] [--dont-wait-up]`
        
        requires `brains init` first. collects local source and pushes to server. `--dont-wait` will make the call return immediately and not wait for results
        
        ##### `> brains results`
        
        TODO: Opens up results in browser
        
        
        `brains.yaml` examples
        ==================
        
        Hello world
        ```
        run: python hello_world.py
        content: hello_world.py
        ```
        
        Hello world with glob file pattern
        ```
        run: python hello_world.py
        content: *.py
        ```
        
        Hello world multiple individual files AND glob patterns
        ```
        run: python hello_world.py
        content:
         - hello_world.py
         - test_hello_world.py
         - yo_momma.dataset
         - src/*.py
        ```
        
        
        
        
        
        
        # TODO
        
         - [ ] finish `get` command where to save it?
         - [ ] `brains run` should fetch dataset/cache it properly (use name not UUID)
         - [ ] TODO: Opens up results in browser/go to browser with current config already setup?
         - [x] change `init` to automatically put every file in contents except brains history
         - [x] support multiple datasets
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
