Problem
The current init.py contradicts the optional dependencies declared in pyproject.toml. Eager imports at module level force users to install all extra packages, making optional dependencies effectively mandatory.
TODO:
- standardize on absolute imports as recommended by pep8
- Reduce / restructure imports in init to avoud eager leading of optional extras
- define refactoring roadmap
acceptance criteria
Optinal dependencies declared in pyproject toml need to be truly optional - users who dont install extras shoudl not have an error.
Problem
The current init.py contradicts the optional dependencies declared in pyproject.toml. Eager imports at module level force users to install all extra packages, making optional dependencies effectively mandatory.
TODO:
acceptance criteria
Optinal dependencies declared in pyproject toml need to be truly optional - users who dont install extras shoudl not have an error.