Metadata-Version: 2.1
Name: datacube
Version: 1.8.0b5
Summary: An analysis environment for satellite and other earth observation data
Home-page: https://github.com/opendatacube/datacube-core
Author: Open Data Cube
Maintainer: Open Data Cube
Maintainer-email: 
License: Apache License 2.0
Description: Open Data Cube Core
        ===================
        
        |Build Status| |Coverage Status| |Documentation Status|
        
        Overview
        ========
        
        The Open Data Cube Core provides an integrated gridded data
        analysis environment for decades of analysis ready earth observation
        satellite and related data from multiple satellite and other acquisition
        systems.
        
        Documentation
        =============
        
        See the `user guide <http://datacube-core.readthedocs.io/en/latest/>`__ for
        installation and usage of the datacube, and for documentation of the API.
        
        `Join our Slack <http://slack.opendatacube.org>`__ if you need help
        setting up or using the Open Data Cube.
        
        Please help us to keep the Open Data Cube community open and inclusive by
        reading and following our `Code of Conduct <code-of-conduct.md>`__.
        
        Requirements
        ============
        
        System
        ~~~~~~
        
        -  PostgreSQL 9.5+
        -  Python 3.6+
        
        Developer setup
        ===============
        
        1. Clone:
        
           -  ``git clone https://github.com/opendatacube/datacube-core.git``
        
        2. Create a Python environment to use ODC within, we recommend `conda <https://docs.conda.io/en/latest/miniconda.html>`__ as the
           easiest way to handle Python dependencies.
        
        ::
        
           conda create -n odc -c conda-forge python=3.6 datacube pre_commit
           conda activate odc
        
        3. Install a develop version of datacube-core.
        
        ::
        
           cd datacube-core
           pip install --upgrade -e .
        
        4. Install the `pre-commit <https://pre-commit.com>`__ hooks to help follow ODC coding
           conventions when committing with git.
        
        ::
        
           pre-commit install
        
        5. Run unit tests + PyLint
           ``./check-code.sh``
        
           (this script approximates what is run by Travis. You can
           alternatively run ``pytest`` yourself). Some test dependencies may need to be installed, attempt to install these using:
           
           ``pip install --upgrade -e '.[test]'``
           
           If install for these fails please lodge them as issues.
        
        6. **(or)** Run all tests, including integration tests.
        
           ``./check-code.sh integration_tests``
        
           -  Assumes a password-less Postgres database running on localhost called
        
           ``agdcintegration``
        
           -  Otherwise copy ``integration_tests/agdcintegration.conf`` to
              ``~/.datacube_integration.conf`` and edit to customise.
        
        
        Alternatively one can use ``opendatacube/datacube-tests`` docker image to run
        tests. This docker includes database server pre-configured for running
        integration tests. Add ``--with-docker`` command line option as a first argument
        to ``./check-code.sh`` script.
        
        ::
        
           ./check-code.sh --with-docker integration_tests
        
        
        .. |Build Status| image:: https://github.com/opendatacube/datacube-core/workflows/build/badge.svg
           :target: https://github.com/opendatacube/datacube-core/actions
        .. |Coverage Status| image:: https://codecov.io/gh/opendatacube/datacube-core/branch/develop/graph/badge.svg
           :target: https://codecov.io/gh/opendatacube/datacube-core
        .. |Documentation Status| image:: https://readthedocs.org/projects/datacube-core/badge/?version=latest
           :target: http://datacube-core.readthedocs.org/en/latest/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Requires-Python: >=3.6.0
Description-Content-Type: text/x-rst
Provides-Extra: performance
Provides-Extra: interactive
Provides-Extra: distributed
Provides-Extra: doc
Provides-Extra: replicas
Provides-Extra: celery
Provides-Extra: s3
Provides-Extra: test
Provides-Extra: all
