Skip to content

Commit

Permalink
Merge pull request #77 from 12rambau/master
Browse files Browse the repository at this point in the history
refactor __init__
  • Loading branch information
ghislainv committed Apr 26, 2023
2 parents 3324ba0 + c48f8a9 commit 4d11831
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion forestatrisk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,19 @@
# license :GPLv3
# ==============================================================================

"""forestatrisk: modelling and forecasting deforestation in the tropics.
https://ecology.ghislainv.fr/forestatrisk/
"""

# Standard library imports
from __future__ import division, print_function # Python 3 compatibility

# Define double undescore variables (https://peps.python.org/pep-0008/#module-level-dunder-names)
__author__ = "Ghislain Vieilledent"
__email__ = "[email protected]"
__version__ = "1.1"

# Local imports
# Data
from .build_data import data, sample
Expand All @@ -37,4 +47,4 @@
from .validate import resample_sum
from .validate import validation_npix

# EOF
# EOF

0 comments on commit 4d11831

Please sign in to comment.