diff --git a/setup.py b/setup.py index 1a4a8d8..bf6afe7 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def read_file(file_name): setup( name='pyfilehandling', - version='2.0.1', + version='2.0.2', description='A Python package for file manipulation operations.', long_description=long_description, long_description_content_type='text/markdown', @@ -30,6 +30,9 @@ def read_file(file_name): 'Documentation': 'https://jeeldobariya38.github.io/PyFileHandling/', 'Source Code': 'https://github.com/JeelDobariya38/PyFileHandling', }, + package_data={ + 'pyfilehandling': ['py.typed', '*.pyi'], + }, license='MIT', python_requires='>=3.9', )