Add py.typed file for PEP 561

This commit is contained in:
Michael Lazar 2020-12-23 22:43:45 -05:00
parent 8ad184519b
commit 557bd96650
3 changed files with 7 additions and 0 deletions

View File

@ -6,6 +6,11 @@
- Added support for international domain names using IDN encoding. - Added support for international domain names using IDN encoding.
#### Features
- Added py.typed file to indicate that the jetforce python library has support
for type hints.
### v0.7.0 (2020-12-06) ### v0.7.0 (2020-12-06)
#### Spec Changes #### Spec Changes

0
jetforce/py.typed Normal file
View File

View File

@ -26,6 +26,7 @@ setuptools.setup(
long_description=long_description(), long_description=long_description(),
long_description_content_type="text/markdown", long_description_content_type="text/markdown",
packages=["jetforce", "jetforce.app"], packages=["jetforce", "jetforce.app"],
package_data={"jetforce": ["py.typed"]},
py_modules=["jetforce_client"], py_modules=["jetforce_client"],
entry_points={ entry_points={
"console_scripts": [ "console_scripts": [
@ -44,4 +45,5 @@ setuptools.setup(
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
], ],
zip_safe=False,
) )