FormalLanguageConstrainedPathQuerying / FormalLanguageConstrainedPathQuerying/CFPQ_Data
[FEATURE] Add py.typed marker
Open
enhancement
- Dominant language
- Python
- Stars
- 11
- Forks
- 16
- Avg merge
- 8h 48m
- Merged PRs (30d)
- 29
Description
Your project has inline type hints and you don't provide stubs, so according to the [PEP documentation](https://peps.python.org/pep-0561/#packaging-type-information) you need to add `py.typed` marker in project.
Do following fix to provide types for type checkers (like mypy):
setup.py
```python
setup(
...
package_data={name: ["py.typed"]},
...
)
```
In bash
```bash
touch cfpq_data/py.typed
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.