Metadata-Version: 2.1
Name: eoriver
Version: 0.1.5
Summary: Earth Observation River Tools
Home-page: https://github.com/openearth/eo-river
Author: Gennadii Donchyts
Author-email: gennadiy.donchyts@gmail.com
License: MIT license
Keywords: eoriver
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: Click (>=6.0)
Requires-Dist: hydroengine (>=0.0.24)
Requires-Dist: geojson

==============
EO River Tools
==============


.. image:: https://img.shields.io/pypi/v/eo-river.svg
        :target: https://pypi.python.org/pypi/eo-river

.. image:: https://img.shields.io/travis/openearth/eo-river.svg
        :target: https://travis-ci.org/openearth/eo-river

.. image:: https://readthedocs.org/projects/eo-river/badge/?version=latest
        :target: https://eo-river.readthedocs.io/en/latest/?badge=latest
        :alt: Documentation Status




Earth Observation River Tools


* Free software: MIT license
* Documentation: https://eo-river.readthedocs.io.

Development
-----------

To install a new version, use the following (under Unix):

```bash
make bump
git push
make release
```

Then, manually release a new version on GitHub.

PyInstaller
-----------

To build exe on Windows, we use PyInstaller. Unfortunately, with the latest version of Anaconda it generates relatively large file (~280Mb) dut to MKL libraries.
The following workaround is used to avoid this: https://stackoverflow.com/questions/43886822/pyinstaller-with-pandas-creates-over-500-mb-exe/48846546#48846546.
This should not be too critical as we do not require a very high performance.

First, run the following (once):

```bash
conda create -n exe python=3
activate exe
pip install pandas pyinstaller pypiwin32 Click hydroengine geojson
echo hiddenimports = ['pandas._libs.tslibs.timedeltas'] > %CONDA_PREFIX%\Lib\site-packages\PyInstaller\hooks\hook-pandas.py
```

Then, the following command builds a new exe in EXE build\exe\dist\ directory:
```bash
scripts\build_exe.cmd
```


Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage


=======
History
=======

0.1.5 (2018-10-16)
------------------

* Added exe bilding using PyInstaller.
* Added --version.


0.1.0 (2018-06-05)
------------------

* First release on PyPI.


