Skip to content

Commit

Permalink
Add py.typed export per PEP 561 (#158)
Browse files Browse the repository at this point in the history
* Add py.typed export per PEP 561

* Add to changelog

* links

* typo
  • Loading branch information
maroux committed Mar 31, 2022
1 parent ab53845 commit 99d4f52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

- Add py.typed export per [PEP 561](https://www.python.org/dev/peps/pep-0561/) [PR #158](https://github.com/model-bakers/model_bakery/pull/158)

### Changed
- Extend type hints in `model_bakery.recipe` module, make `Recipe` class generic [PR #292](https://github.com/model-bakers/model_bakery/pull/292)

Expand Down
Empty file added model_bakery/py.typed
Empty file.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -16,6 +16,7 @@
license=about["__license__"],
packages=["model_bakery"],
include_package_data=True, # declarations in MANIFEST.in
package_data={"model_bakery": ["py.typed"]},
install_requires=open(join(here, "requirements.txt")).readlines(),
description="Smart object creation facility for Django.",
long_description=open(join(dirname(__file__), "README.md")).read(),
Expand Down

0 comments on commit 99d4f52

Please sign in to comment.