Skip to content

Commit

Permalink
v0.1.3-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
davemlz committed Jan 5, 2021
1 parent c1fbcea commit 9729bb9
Show file tree
Hide file tree
Showing 10 changed files with 592 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .ipynb_checkpoints/setup-checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read(filename):

setup(
name="eemont",
version="0.1.2",
version="0.1.3",
url="https://github.com/davemlz/eemont",
license='MIT',

Expand All @@ -27,7 +27,7 @@ def read(filename):

packages=find_packages(exclude=('tests',),include=["eemont", "eemont.*"]),

install_requires=[],
install_requires=['earthengine-api'],

classifiers=[
'Development Status :: 2 - Pre-Alpha',
Expand Down
3 changes: 2 additions & 1 deletion docs/.ipynb_checkpoints/conf-checkpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'David Montero Loaiza'

# The full version, including alpha/beta/rc tags
release = 'v0.1.2-beta'
release = 'v0.1.3-beta'


# -- General configuration ---------------------------------------------------
Expand All @@ -35,6 +35,7 @@
"sphinx.ext.autodoc",
"sphinx.ext.mathjax",
"sphinx.ext.viewcode",
'sphinx.ext.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
30 changes: 30 additions & 0 deletions docs/.ipynb_checkpoints/eemont-checkpoint.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
eemont package
==============

Submodules
----------

eemont.image module
-------------------

.. automodule:: eemont.image
:members:
:undoc-members:
:show-inheritance:

eemont.imagecollection module
-----------------------------

.. automodule:: eemont.imagecollection
:members:
:undoc-members:
:show-inheritance:


Module contents
---------------

.. automodule:: eemont
:members:
:undoc-members:
:show-inheritance:
7 changes: 7 additions & 0 deletions docs/.ipynb_checkpoints/setup-checkpoint.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
setup module
============

.. automodule:: setup
:members:
:undoc-members:
:show-inheritance:

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eemont
======

.. toctree::
:maxdepth: 4

eemont
3 changes: 2 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'David Montero Loaiza'

# The full version, including alpha/beta/rc tags
release = 'v0.1.2-beta'
release = 'v0.1.3-beta'


# -- General configuration ---------------------------------------------------
Expand All @@ -35,6 +35,7 @@
"sphinx.ext.autodoc",
"sphinx.ext.mathjax",
"sphinx.ext.viewcode",
'sphinx.ext.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
2 changes: 1 addition & 1 deletion eemont/.ipynb_checkpoints/__init__-checkpoint.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""The eemont python package."""

__version__ = '0.1.2'
__version__ = '0.1.3'

from . import *
2 changes: 1 addition & 1 deletion eemont/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""The eemont python package."""

__version__ = '0.1.2'
__version__ = '0.1.3'

from . import *
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def read(filename):

setup(
name="eemont",
version="0.1.2",
version="0.1.3",
url="https://github.com/davemlz/eemont",
license='MIT',

Expand All @@ -27,7 +27,7 @@ def read(filename):

packages=find_packages(exclude=('tests',),include=["eemont", "eemont.*"]),

install_requires=[],
install_requires=['earthengine-api'],

classifiers=[
'Development Status :: 2 - Pre-Alpha',
Expand Down

0 comments on commit 9729bb9

Please sign in to comment.