Need to figure out a way to extract the types from the Cython module to a *.pyi stub file and add a py.typed file. This should enable autocompletion and type checking.
This will require converting from a single file module to a package though. Not sure whether to place all code in an __init__.pyx or include an internal _cypcap.pyx and have __init__.py do a from ._cypcap import *
Need to figure out a way to extract the types from the Cython module to a
*.pyistub file and add apy.typedfile. This should enable autocompletion and type checking.This will require converting from a single file module to a package though. Not sure whether to place all code in an
__init__.pyxor include an internal_cypcap.pyxand have__init__.pydo afrom ._cypcap import *