Metadata-Version: 2.4
Name: laser-core
Version: 1.0.2
Summary: Core functionality for the Light Agent Spatial modeling for ERadication toolkit (LASER).
Keywords: spatial modeling,disease eradication,agent-based modeling
Author: Christopher Lorton, Jonathan Bloedow, Katherine Rosenfeld, Kevin McCarthy
Author-email: Christopher Lorton <christopher.lorton@gatesfoundation.org>, Jonathan Bloedow <jonathan.bloedow@gatesfoundation.org>, Katherine Rosenfeld <katherine.rosenfeld@gatesfoundation.org>, Kevin McCarthy <kevin.mccarthy@gatesfoundation.org>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Dist: click
Requires-Dist: numpy
Requires-Dist: numba
Requires-Dist: matplotlib
Requires-Dist: pandas
Requires-Dist: h5py
Requires-Dist: geopandas
Requires-Dist: shapely
Requires-Dist: uv>=0.10.5
Requires-Dist: pytest>=6.0 ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: tox ; extra == 'dev'
Requires-Dist: tox-uv ; extra == 'dev'
Requires-Dist: sphinx>=1.3 ; extra == 'docs'
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: furo ; extra == 'docs'
Requires-Dist: pytest>=6.0 ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: scipy ; extra == 'test'
Requires-Dist: tox ; extra == 'test'
Requires-Dist: tox-uv ; extra == 'test'
Maintainer: Christopher Lorton, Jonathan Bloedow
Maintainer-email: Christopher Lorton <christopher.lorton@gatesfoundation.org>, Jonathan Bloedow <jonathan.bloedow@gatesfoundation.org>
Requires-Python: >=3.10, <3.15
Project-URL: Homepage, https://github.com/laser-base/laser-core
Project-URL: Issues, https://github.com/laser-base/laser-core/issues
Project-URL: Documentation, https://laser-base.github.io/laser-generic/
Project-URL: Changelog, https://github.com/laser-base/laser-core/blob/main/CHANGELOG.rst
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: test
Description-Content-Type: text/x-rst

========
Overview
========

.. start-badges

.. list-table::
    :stub-columns: 1

    * - docs
      - |docs|
    * - tests
      - | |github-actions|
        | |codecov|
    * - package
      - | |version| |wheel| |supported-versions| |supported-implementations|
        | |commits-since|
.. |docs| image:: https://readthedocs.org/projects/idmlaser/badge/?style=flat
    :target: https://docs.idmod.org/projects/laser/en/latest/
    :alt: Documentation Status

.. |github-actions| image:: https://github.com/laser-base/laser-core/actions/workflows/github-actions.yml/badge.svg
    :alt: GitHub Actions Build Status
    :target: https://github.com/laser-base/laser-core/actions

.. |codecov| image:: https://codecov.io/gh/InstituteforDiseaseModeling/laser/branch/main/graphs/badge.svg?branch=main
    :alt: Coverage Status
    :target: https://app.codecov.io/github/InstituteforDiseaseModeling/laser

.. |version| image:: https://img.shields.io/pypi/v/laser-core.svg
    :alt: PyPI Package latest release
    :target: https://pypi.org/project/laser-core/

.. |wheel| image:: https://img.shields.io/pypi/wheel/laser-core.svg
    :alt: PyPI Wheel
    :target: https://pypi.org/project/laser-core/

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/laser-core.svg
    :alt: Supported versions
    :target: https://pypi.org/project/laser-core/

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/laser-core.svg
    :alt: Supported implementations
    :target: https://pypi.org/project/laser-core/

.. |commits-since| image:: https://img.shields.io/github/commits-since/InstituteforDiseaseModeling/laser/v1.0.2.svg
    :alt: Commits since latest release
    :target: https://github.com/laser-base/laser-core/compare/v1.0.2...main



.. end-badges

Light Agent Spatial modeling for ERadication.

* Free software: MIT license

Installation
============

::

    pip install laser-core

You can also install the in-development version with::

    pip install https://github.com/laser-base/laser-core/archive/main.zip


Documentation
=============


https://docs.idmod.org/projects/laser/en/latest/


Development
===========

To run all the tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox
