I have recently created my own PyPI package with a bunch of useful functions. It works great, and when I import it in any project, the functions work, but my Visual Studio Code doesn't show the docstrings when I hover over the functions, and the functions stay white.
Are there Python Visual Studio Code settings I need to change or things I need to change in my PyPI package?
The GitHub place for jeffutils.
I have tried setting the "python.analysis.packageIndexDepths" depth for "jeffutils" to 4, and I added from .utils import * into the __init__.py file in the package.
Other than that, I am kind of lost, since Pylance and the Python interpreter will pop up docstrings for all of the other pip-installed packages I have.
