Metadata-Version: 2.1
Name: open-FRED-cli
Version: 0.0.1
Summary: The open_FRED command line interface and other tools for working with databases containing open_FRED data.
Home-page: https://github.com/open-fred/cli
Author: Stephan Günther
Author-email: gnn.code@gmail.com
License: BSD-3-Clause
Project-URL: Documentation, https://cli.readthedocs.io/
Project-URL: Changelog, https://cli.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/open-fred/cli/issues
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Python: !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Requires-Dist: GeoAlchemy2
Requires-Dist: Shapely
Requires-Dist: SQLAlchemy
Requires-Dist: alembic
Requires-Dist: click
Requires-Dist: dask
Requires-Dist: netCDF4
Requires-Dist: oemof
Requires-Dist: oemof.db (>=0.0.6)
Requires-Dist: toolz
Requires-Dist: xarray (>=0.10.6)

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



The open_FRED command line interface and other tools for working with
databases containing open_FRED data.

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

It's probably best to install the package into a `virtual environment`_.
Once you've created a virtualenv, :code:`activate` it and install the
package into it via::

    pip install open_FRED-cli

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

    pip install https://github.com/open-fred/cli/archive/master.zip

Once you've done either, make yourself familiar with the program by running::

    open_FRED --help

.. _virtual environment: http://docs.python-guide.org/en/latest/dev/virtualenvs/

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


https://cli.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


Changelog
=========

0.0.1 (2019-12-03)
------------------

* First release on PyPI.


