Skip to content

Commit

Permalink
Fixes: .pyi not included issue that comes with v2.0.0 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeelDobariya38 authored Oct 17, 2023
2 parents 8b8cbf0 + 3189fde commit 11dae9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include pyfilehandling/py.typed
include pyfilehandling/*.pyi
include pyfilehandling/files/*.pyi
Empty file added pyfilehandling/py.typed
Empty file.
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def read_file(file_name):

setup(
name='pyfilehandling',
version='2.0.0',
version='2.0.1',
description='A Python package for file manipulation operations.',
long_description=long_description,
long_description_content_type='text/markdown',
Expand All @@ -31,8 +31,5 @@ def read_file(file_name):
'Source Code': 'https://github.com/JeelDobariya38/PyFileHandling',
},
license='MIT',
package_data={
'your_package': ['*.pyi'],
},
python_requires='>=3.9',
)

0 comments on commit 11dae9c

Please sign in to comment.