pipx install qcsuper does not install requirements, as setup.py contains all its dependencies in requires= instead of install_requires=
according to the setuptools reference, requires is deprecated in favor of install_requires: https://setuptools.pypa.io/en/latest/references/keywords.html
and I think it's been that way for quite a while