Metadata-Version: 2.1
Name: ctapipe
Version: 0.10.2
Summary: CTA Python pipeline experimental version
Home-page: https://github.com/cta-observatory/ctapipe
Author: ctapipe developers
Author-email: karl.kosack@cea.fr
License: BSD 3-Clause License
Platform: UNKNOWN
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Scientific/Engineering :: Astronomy
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.7
Requires-Dist: astropy (<5,>=4)
Requires-Dist: bokeh (~=1.0)
Requires-Dist: eventio (<2.0.0a0,>=1.5.0)
Requires-Dist: iminuit (~=1.3)
Requires-Dist: joblib
Requires-Dist: matplotlib (~=3.0)
Requires-Dist: numba (>=0.43)
Requires-Dist: numpy (~=1.16)
Requires-Dist: pandas (>=0.24.0)
Requires-Dist: psutil
Requires-Dist: scikit-learn
Requires-Dist: scipy (~=1.2)
Requires-Dist: tables (~=3.4)
Requires-Dist: tqdm (>=4.32)
Requires-Dist: traitlets (>=5.0.5,~=5.0)
Requires-Dist: zstandard
Requires-Dist: requests
Requires-Dist: setuptools-scm (>=3.4)
Requires-Dist: h5py (~=2.0)
Provides-Extra: all
Requires-Dist: pytest ; extra == 'all'
Requires-Dist: sphinx-rtd-theme ; extra == 'all'
Requires-Dist: sphinx-automodapi ; extra == 'all'
Requires-Dist: sphinx ; extra == 'all'
Requires-Dist: nbsphinx ; extra == 'all'
Requires-Dist: numpydoc ; extra == 'all'
Requires-Dist: jupyter ; extra == 'all'
Requires-Dist: notebook ; extra == 'all'
Requires-Dist: travis-sphinx ; extra == 'all'
Requires-Dist: graphviz ; extra == 'all'
Provides-Extra: docs
Requires-Dist: sphinx-rtd-theme ; extra == 'docs'
Requires-Dist: sphinx-automodapi ; extra == 'docs'
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
Requires-Dist: jupyter ; extra == 'docs'
Requires-Dist: notebook ; extra == 'docs'
Requires-Dist: travis-sphinx ; extra == 'docs'
Requires-Dist: graphviz ; extra == 'docs'
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'

============================================================
ctapipe |ci| |codacy| |coverage| |conda| |doilatest|
============================================================

.. |ci| image:: https://github.com/cta-observatory/ctapipe/workflows/CI/badge.svg?branch=master
    :target: https://github.com/cta-observatory/ctapipe/actions?query=workflow%3ACI+branch%3Amaster
    :alt: Test Status
.. |codacy|  image:: https://api.codacy.com/project/badge/Grade/6192b471956b4cc684130c80c8214115
  :target: https://www.codacy.com/gh/cta-observatory/ctapipe?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=cta-observatory/ctapipe&amp;utm_campaign=Badge_Grade
.. |conda| image:: https://anaconda.org/cta-observatory/ctapipe/badges/installer/conda.svg
.. |coverage| image:: https://codecov.io/gh/cta-observatory/ctapipe/branch/master/graph/badge.svg
  :target: https://codecov.io/gh/cta-observatory/ctapipe
.. |doilatest| image:: https://zenodo.org/badge/37927055.svg
  :target: https://zenodo.org/badge/latestdoi/37927055
.. |doiv07| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3372211.svg
   :target: https://doi.org/10.5281/zenodo.3372211
.. |doiv08| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3837306.svg
   :target: https://doi.org/10.5281/zenodo.3837306
.. |doiv09| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4084989.svg
   :target: https://doi.org/10.5281/zenodo.4084989
.. |doiv010| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.4279334.svg
   :target: https://doi.org/10.5281/zenodo.4279334

Low-level data processing pipeline software for
`CTA <www.cta-observatory.org>`_ (the Cherenkov Telescope Array)

This is code is a prototype data processing framework and is under rapid
development. It is not recommended for production use unless you are an
expert or developer!

* Code: https://github.com/cta-observatory/ctapipe
* Docs: https://cta-observatory.github.io/ctapipe/
* Slack: Contact Karl Kosack for invite

Citing this software
--------------------
If you use this software for a publication, please cite the proper version using the following DOIs:

- v0.10.0 : |doiv010|
- v0.9.1 : |doiv09|
- v0.8.0 : |doiv08|
- v0.7.0 : |doiv07|

Installation for Users
----------------------

*ctapipe* and its dependencies may be installed using the *Anaconda* or
*Miniconda* package system. We recommend creating a conda virtual environment
first, to isolate the installed version and dependencies from your master
environment (this is optional).


The following command will set up a conda virtual environment, add the
necessary package channels, and install ctapipe specified version and its dependencies::

  CTAPIPE_VER=0.8.0
  wget https://raw.githubusercontent.com/cta-observatory/ctapipe/v$CTAPIPE_VER/environment.yml
  conda env create -n cta -f environment.yml
  conda activate cta
  conda install -c cta-observatory ctapipe=$CTAPIPE_VER

The file *environment.yml* can be found in this repo. 
Note this is *pre-alpha* software and is not yet stable enough for end-users (expect large API changes until the first stable 1.0 release).

Developers should follow the development install instructions found in the
`documentation <https://cta-observatory.github
.io/ctapipe/getting_started>`_.



