diff --git a/setup.py b/setup.py index e375cb2..1ec6a2e 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import pathlib + from setuptools import setup here = pathlib.Path(__file__).parent.resolve() @@ -7,7 +8,7 @@ setup( name='sastadev', - version='0.1.0', + version='0.1.1', description='Linguistic functions for SASTA tool', long_description=long_description, long_description_content_type='text/markdown', @@ -28,6 +29,7 @@ 'auchann', 'lxml', 'openpyxl', - 'XlsxWriter' + 'XlsxWriter', + 'typing-extensions' ], -) \ No newline at end of file +)