jacobschaer / python-doipclient

Pure Python ISO 13400 Client
MIT License
160 stars 52 forks source link

Added py.typed and setup.py support #55

Closed cstaylor closed 2 weeks ago

cstaylor commented 2 weeks ago

I was getting errors from mypy when trying to use doipclient, and found the project is missing a py.typed file as described here.

jacobschaer commented 2 weeks ago

Seems reasonable to me. Thanks - I don't think the code is super diligent about type annotations, so if there's any deficiencies you come across with those, feel free to MR as well and I'll get them in.

jacobschaer commented 2 weeks ago

I had to change setup.py to publish - copied some other examples.

cstaylor commented 1 week ago

Thank you!