Metadata-Version: 1.1
Name: vba-wrapper
Version: 0.0.3
Summary: wrapper for the VBA emulator
Home-page: https://github.com/kanzure/python-vba-wrapper
Author: Bryan Bishop
Author-email: kanzure@gmail.com
License: BSD
Description: # python-vba-wrapper
        
        **python-vba-wrapper** is a python ctypes wrapper for the VBA emulator.
        
        ## installing
        
        Follow the build instructions in the README for
        [vba-linux](https://github.com/kanzure/vba-linux). Future versions will be
        included through setup.py by default, but for now this is a manual procedure. Continue installing by the following steps.
        
        ```bash
        pip install -U vba-wrapper
        ```
        
        or
        
        ```bash
        git clone git://github.com/kanzure/python-vba-wrapper.git
        cd python-vba-wrapper/
        python setup.py install
        ```
        
        ## testing
        
        ```bash
        nosetests
        ```
        
        ## usage
        
        ```python
        import vba_wrapper
        vba = vba_wrapper.VBA("/home/kanzure/code/pokecrystal/pokecrystal.gbc")
        vba.run() # press f12 to get back to python
        ```
        
        ## license
        
        BSD
        
Platform: any
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
