Skip to content

Commit

Permalink
Add py.typed to be PEP 561 compliant (#424)
Browse files Browse the repository at this point in the history
* Add py.typed to be PEP 561 compliant

* Adds py.typed to package data

So that it's packaged up when distributed too.

---------

Co-authored-by: Shun Liang <[email protected]>
Co-authored-by: Stefan Krawczyk <[email protected]>
  • Loading branch information
3 people authored Nov 17, 2024
1 parent 1272c42 commit 9a45cc9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
recursive-include burr/tracking/server/demo_data *
recursive-include burr/tracking/server/build *
recursive-include examples/ *
global-include *.typed
Empty file added burr/py.typed
Empty file.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ include = ["burr", "burr.*"]
[tool.setuptools.package-data]
burr = [
"burr/tracking/server/build/**/*",
"burr/tracking/server/demo_data/**/*"
"burr/tracking/server/demo_data/**/*",
"py.typed",
]


Expand Down

0 comments on commit 9a45cc9

Please sign in to comment.