Metadata-Version: 2.1
Name: cppyabm
Version: 1.0.16
Summary: General-purpose agent-based modeling library
Home-page: https://github.com/janursa/CppYABM
Author: Jalil Nourisa
Author-email: jalil.nourisa@gmail.com
License: UNKNOWN
Description: 
          
        
        ## General purpose agent-based modeling library to integrate C++ and Python
        CppyABM is a free open-source header-only library that enables agent-based modeling by providing essential tools in both C++ and Python as well as mixing both in a single model. The modeling in both C++ and Python follows similar semantics and style. Therefore, a model developed in one languages can be conveniently transferred to another. In addition, CppyABM provides binding tools to specifically expose certain parts of a model written in C++ for further development in Python. This enables users to take the advantage of both languages simultaneously. CppyABM uses <a href="https://github.com/janursa/RTvisualize" title="RTvisualize">RTvisualize</a> for browser-based real-time visualization. 
        
        
        The full documentation of the library is available <a href="https://janursa.github.io/CppyABM/" title="About Me">here</a>. See <a href="https://github.com/janursa/CppyABM/tree/master/examples" title="examples">examples</a> folder as showcase of CppyABM utility.
        
        
        
        ## Install/compile
        
        ### For Python development:
        
        Using pip manager:
        
        -  `pip install --upgrade cppyabm`
        
        Or, download the package and in the root folder, command:
        
        -  `python3 setup.py install`
        
        ### For Cpp development:
        Clone the library and add the main root as a subdirectory. Using modern Cmake, the following command will include the library:
        -  `add_subdirectory("dir_to_cppyabm")`
        -  `target_include_directories("your_project" "dir_to_include/ABM")`
         
        
        ## Authors
        
        - Jalil Nourisa
        
        ## Useful links
        Familiarity with 
        <a href="https://pybind11.readthedocs.io/en/stable/index.html" title="pybind11">pybind11</a> is helpful during the Python binding process.
         
        
        ## Contributing to CppyABM
        In case of encountering an issue, pls report as an issue.
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
