Skip to content

Commit 3b87b0d

Browse files
committed
Add py.typed and minor typo fix
1 parent 0191abb commit 3b87b0d

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
include LICENSE
2+
include py.typed
13
include README.md
2-
include LICENSE

py.typed

Whitespace-only changes.

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,8 @@
3232
entry_points={
3333
'console_scripts': ['apertium-streamparser=streamparser:main'],
3434
},
35+
package_data={
36+
'streamparser': ['py.typed'],
37+
},
3538
py_modules=['streamparser'],
3639
)

streamparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
__credits__ = ['Sushain K. Cherivirala', 'Kevin Brubeck Unhammer']
1616
__license__ = 'GPLv3+'
1717
__status__ = 'Production'
18-
__version__ = '5.0.2'
18+
__version__ = '5.0.3'
1919

2020
import fileinput
2121
import functools

0 commit comments

Comments
 (0)