Closed pawamoy closed 2 years ago
Very nice, thanks!
We use black
to lint our code. It's expecting double-quotes:
url="https://github.com/AutoActuary/mkdocstrings-vba",
- packages=setuptools.find_namespace_packages(include=['mkdocstrings_handlers.*']),
+ packages=setuptools.find_namespace_packages(include=["mkdocstrings_handlers.*"]),
classifiers=[
https://github.com/mkdocstrings/mkdocstrings/issues/387
Confirmed it worked by installing the package with
pip install .
in a venv, moving to a completely different directory, and runningfrom mkdocstrings_handlers import vba
in the venv's Python interpreter.