We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipx install qcsuper does not install requirements, as setup.py contains all its dependencies in requires= instead of install_requires=
pipx install qcsuper
setup.py
requires=
install_requires=
according to the setuptools reference, requires is deprecated in favor of install_requires: https://setuptools.pypa.io/en/latest/references/keywords.html
requires
install_requires
and I think it's been that way for quite a while
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pipx install qcsuper
does not install requirements, assetup.py
contains all its dependencies inrequires=
instead ofinstall_requires=
according to the setuptools reference,
requires
is deprecated in favor ofinstall_requires
: https://setuptools.pypa.io/en/latest/references/keywords.htmland I think it's been that way for quite a while
The text was updated successfully, but these errors were encountered: