Metadata-Version: 2.1
Name: pyrocko
Version: 2021.4.2
Summary: A versatile seismology toolkit for Python.
Home-page: https://pyrocko.org
Author: The Pyrocko Developers
Author-email: info@pyrocko.org
License: GPLv3
Description: Pyrocko is an open source seismology toolbox and library, written in the Python
        programming language. It can be utilized flexibly for a variety of geophysical
        tasks, like seismological data processing and analysis, modelling of InSAR, GPS
        data and dynamic waveforms, or for seismic source characterization.
        
        Installation with pip
        ---------------------
        
        Using pip, Pyrocko can be installed from source or binary packages which we
        have uploaded to the Python Package Index. Depending on your attitude,
        different installation variants are possible (see following sections).
        The complete `installation guide <https://pyrocko.org/docs/current/install>`_
        is available in the `Pyrocko manual <https://pyrocko.org/docs/current/>`_.
        
        *Good to Know:*
        
        * Consequently use ``pip3`` instead of ``pip`` if you want to be sure that
          Python3 versions are installed
        * Add the ``--user`` option to all pip commands if you want to install into
          your home directory.
        * Consider using
          `virtual environments <https://docs.python.org/3/tutorial/venv.html>`_ when
          using pip to lower the risk of package conflicts.
        
        
        Variant 1: allow pip to resolve dependencies
        ............................................
        
        .. code-block:: bash
        
            pip install pyrocko
        
            # and, (only) if you want to use Snuffler:
        
            pip install --only-binary :all: PyQt5
        
        **Advantages:**
        
        - Quick and easy.
        
        **Disadvantages:**
        
        - Dependencies installed by pip may shadow native system packages.
        - May turn your system into a big mess.
        
        
        Variant 2: use your system's package manager to install dependencies
        ....................................................................
        
        Install Pyrocko's requirements through your system's package manager (see
        `System specific installation instructions
        <https://pyrocko.org/docs/current/install/system/>`), then use pip with the
        ``--no-deps`` option to install Pyrocko:
        
        .. code-block:: bash
        
            # first use apt-get/yum/pacman to install prerequisites (see above), then:
        
            pip install --no-deps pyrocko
        
        **Advantages:**
        
        - Prevents package dependency conflicts.
        
        **Disadvantages:**
        
        - Need root access.
        - A bit more work to set up.
        
        
        Documentation
        --------------
        
        Documentation, examples and support at https://pyrocko.org/.
        
        
        Development
        ------------
        
        Join us at https://git.pyrocko.org/.
        
        
        -- The Pyrocko Developers
        
Keywords: seismology, waveform analysis, earthquake modelling, geophysics, geophysical inversion
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4
Provides-Extra: gui_scripts
