diff --git a/earthkit/__init__.py b/earthkit/__init__.py index 436df9d..20edbbe 100644 --- a/earthkit/__init__.py +++ b/earthkit/__init__.py @@ -7,6 +7,7 @@ # nor does it submit to any jurisdiction. # +import pkgutil try: # NOTE: the `version.py` file must not be present in the git repository @@ -16,14 +17,7 @@ # Local copy or not installed with setuptools __version__ = "999" -import earthkit.data as data -import earthkit.maps as maps +import earthkit -# import earthkit.regrid as regrid - -__all__ = [ - "data", - "maps", - # "regrid", - "__version__", -] +for component in pkgutil.iter_modules(earthkit.__path__, earthkit.__name__ + "."): + __import__(component.name) diff --git a/setup.cfg b/setup.cfg index e55df97..7aa9b3e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,13 +22,7 @@ test_suite = tests [options] python-requires = >=3.8 -packages = find_namespace: -install_requires = - earthkit-data - earthkit-maps - -[options.packages.find] -include = earthkit, earthkit.* +packages = find: [flake8] max-line-length = 110