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 VS Code doesn’t show the docstrings when I hover over the functions, and the functions stay white. I would love help on knowing if there are Python VS Code settings I need to change or things I need to change in my PyPI package.
The github to jeffutils is https://github.com/jeffxhansen/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 python will pop up docstrings for all of the other pip-installed packages I have.
Thank you in advance! 🙂