Add py.typed file for PEP 561
This commit is contained in:
parent
8ad184519b
commit
557bd96650
|
@ -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
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue