Metadata-Version: 1.1
Name: montecarlo
Version: 0.1.2
Summary: A small Python library for creating simple Monte Carlo simulations.
Home-page: https://github.com/csu/pymontecarlo
Author: Christopher Su
Author-email: chris+gh@christopher.su
License: UNKNOWN
Download-URL: https://github.com/csu/pymontecarlo/archive/master.zip
Description: # pymontecarlo
        A small Python library for creating simple Monte Carlo simulations.
        
        ## Installation
        ```bash
        pip install montecarlo
        ```
        
        ## Usage
        (Under construction)
        ```python
        from montecarlo import montecarlo
        
        def setup():
            ...
        
        def test():
            if (...):
                return True
            return False
        
        mc = montecarlo(test, setup=setup)
        mc.run(iterations=100000)
        ```
        
Platform: UNKNOWN
