Metadata-Version: 2.4
Name: dask-glm
Version: 0.4.0
Summary: Generalized Linear Models with Dask
Maintainer-email: Matthew Rocklin <mrocklin@gmail.com>
License-Expression: BSD-3-Clause
Project-URL: Homepage, https://github.com/dask/dask-glm
Project-URL: Documentation, https://dask-glm.readthedocs.io
Project-URL: Repository, https://github.com/dask/dask-glm
Keywords: dask,glm,machine-learning
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
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: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Requires-Dist: cloudpickle>=1.0
Requires-Dist: dask[array]>=2022.1.0
Requires-Dist: distributed>=2022.1.0
Requires-Dist: multipledispatch>=0.6.0
Requires-Dist: numba>=0.59
Requires-Dist: numpy>=1.21
Requires-Dist: scipy>=1.7
Requires-Dist: scikit-learn>=1.0
Requires-Dist: sparse>=0.15
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-xdist>=3.0; extra == "dev"
Requires-Dist: pre-commit>=3.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: jupyter; extra == "docs"
Requires-Dist: nbsphinx; extra == "docs"
Requires-Dist: notebook; extra == "docs"
Requires-Dist: numpydoc; extra == "docs"
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: sphinx_rtd_theme; extra == "docs"
Dynamic: license-file

Generalized Linear Models in Dask
=================================

|Build Status| |Documentation Status|

*This library is not ready for use.*

See the `documentation`_ for more information.

Developer Setup
---------------
Setup environment (from repo directory)::
    
    conda create env
    source activate dask_glm
    pip install -e .

Run tests::

    py.test



.. |Build Status| image:: https://github.com/dask/dask-glm/workflows/CI/badge.svg
   :target: https://github.com/dask/dask-glm/actions?query=workflow%3ACI

.. |Documentation Status| image:: https://readthedocs.org/projects/dask-glm/badge/?version=latest
   :target: http://dask-glm.readthedocs.io/en/latest/?badge=latest

.. _documentation: http://dask-glm.readthedocs.io/en/latest/
