Metadata-Version: 2.1
Name: zfit-interface
Version: 0.0.3
Summary: zfit model fitting interface for HEP
Home-page: https://github.com/zfit/zfit-interface
Author: Jonas Eschle <Jonas.Eschle@cern.ch>, Albert Puig <apuignav@gmail.com>, Rafael Silva Coutinho <rsilvaco@cern.ch>, Matthieu Marinangeli <matthieu.marinangeli@cern.ch>
Maintainer: zfit
Maintainer-email: zfit@physik.uzh.ch
License: BSD-3-Clause
Project-URL: Documentation, https://zfit-interface.readthedocs.io/
Project-URL: Changelog, https://zfit-interface.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/zfit/zfit-interface/issues
Keywords: TensorFlow,model,fitting,scalable,HEP,zfit
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >=3.7
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: typing-extensions
Requires-Dist: uhi
Provides-Extra: dev
Requires-Dist: bumpversion (>=0.5.3) ; extra == 'dev'
Requires-Dist: coverage (>=4.5.1) ; extra == 'dev'
Requires-Dist: flake8 (>=3.5.0) ; extra == 'dev'
Requires-Dist: jupyter-book ; extra == 'dev'
Requires-Dist: myst-nb ; extra == 'dev'
Requires-Dist: pip (>=9.0.1) ; extra == 'dev'
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: pytest (>=3.4.2) ; extra == 'dev'
Requires-Dist: pytest-rerunfailures (>=6) ; extra == 'dev'
Requires-Dist: pytest-runner (>=2.11.1) ; extra == 'dev'
Requires-Dist: pytest-xdist ; extra == 'dev'
Requires-Dist: setuptools (>=30.3.0) ; extra == 'dev'
Requires-Dist: setuptools-scm[toml] (>=3.4) ; extra == 'dev'
Requires-Dist: Sphinx (>=3.5.4) ; extra == 'dev'
Requires-Dist: sphinx-autodoc-typehints ; extra == 'dev'
Requires-Dist: sphinx-copybutton ; extra == 'dev'
Requires-Dist: sphinx-panels ; extra == 'dev'
Requires-Dist: sphinx-bootstrap-theme ; extra == 'dev'
Requires-Dist: sphinxcontrib-bibtex ; extra == 'dev'
Requires-Dist: sphinxcontrib-images ; extra == 'dev'
Requires-Dist: sphinxcontrib-youtube (>=1.0.0) ; extra == 'dev'
Requires-Dist: tox (>=2.9.1) ; extra == 'dev'
Requires-Dist: twine (>=1.10.0) ; extra == 'dev'
Requires-Dist: watchdog (>=0.8.3) ; extra == 'dev'
Requires-Dist: wheel (>=0.29.0) ; extra == 'dev'

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

.. start-badges

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

    * - docs
      - |docs|
    * - tests
      - | |travis|
        | |coveralls| |codecov|
        | |codacy|
    * - package
      - | |version| |wheel| |supported-versions| |supported-implementations|
        | |commits-since|
.. |docs| image:: https://readthedocs.org/projects/zfit-interface/badge/?style=flat
    :target: https://readthedocs.org/projects/zfit-interface
    :alt: Documentation Status

.. |travis| image:: https://api.travis-ci.org/zfit/zfit-interface.svg?branch=master
    :alt: Travis-CI Build Status
    :target: https://travis-ci.org/zfit/zfit-interface

.. |coveralls| image:: https://coveralls.io/repos/zfit/zfit-interface/badge.svg?branch=master&service=github
    :alt: Coverage Status
    :target: https://coveralls.io/r/zfit/zfit-interface

.. |codecov| image:: https://codecov.io/github/zfit/zfit-interface/coverage.svg?branch=master
    :alt: Coverage Status
    :target: https://codecov.io/github/zfit/zfit-interface

.. |codacy| image:: https://img.shields.io/codacy/grade/[Get ID from https://app.codacy.com/app/zfit/zfit-interface/settings].svg
    :target: https://www.codacy.com/app/zfit/zfit-interface
    :alt: Codacy Code Quality Status

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

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

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

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

.. |commits-since| image:: https://img.shields.io/github/commits-since/zfit/zfit-interface/v0.0.1.svg
    :alt: Commits since latest release
    :target: https://github.com/zfit/zfit-interface/compare/v0.0.1...master



.. end-badges

zfit model fitting interface for HEP

* Free software: BSD 3-Clause License

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

::

    pip install zfit-interface

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

    pip install https://github.com/zfit/zfit-interface/archive/master.zip


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


https://zfit-interface.readthedocs.io/


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

To run the all 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


