This PR fixes the pip install error introduced in #54. The detailed changes are as below:
setup.cfg: setup the version number via version.release_version, instead of going through __init__, to avoid the circular imports that causes the pip install "ModuleNotFoundError"
setup.cfg: add install_requires and remove [opptions.package_data] to be consistent with compass
__init__.py: use absolute module import, to be consistent with the good style from pyresample module
version.py: remove the duplicated __version__ variable.
This PR fixes the pip install error introduced in #54. The detailed changes are as below:
setup.cfg
: setup the version number viaversion.release_version
, instead of going through__init__
, to avoid the circular imports that causes the pip install "ModuleNotFoundError"setup.cfg
: addinstall_requires
and remove[opptions.package_data]
to be consistent with compass__init__.py
: use absolute module import, to be consistent with the good style from pyresample moduleversion.py
: remove the duplicated__version__
variable.