Skip to content

Commit c5731f5

Browse files
authored
Merge pull request #51 from level12/50-type-information
Add py.typed for PEP 561 compatibility
2 parents 1cab726 + f19110a commit c5731f5

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

keg_storage/py.typed

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# See: https://www.python.org/dev/peps/pep-0561/

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@
2626
'Programming Language :: Python :: 3.7',
2727
],
2828
license='BSD',
29+
package_data={'keg_storage': ['py.typed']},
2930
packages=find_packages(),
30-
zip_safe=True,
31+
zip_safe=False,
3132
version=version['VERSION'],
3233
install_requires=[
3334
'arrow',

0 commit comments

Comments
 (0)