-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Your project has inline type hints and you don't provide stubs, so according to the PEP documentation you need to add py.typed marker in project.
Do following fix to provide types for type checkers (like mypy):
setup.py
setup(
...
package_data={name: ["py.typed"]},
...
)In bash
touch cfpq_data/py.typedReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request