Skip to content

Commit

Permalink
add mypy_extensions dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jirikuchta committed Apr 13, 2021
1 parent bbc375f commit 89c9f04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def readme():

setup(
name="garmin-ical-export",
version="1.0.2",
version="1.0.3",
description="Export Garmin Connect activities to iCalendar file",
long_description=readme(),
long_description_content_type="text/markdown",
Expand All @@ -23,7 +23,7 @@ def readme():
entry_points={
"console_scripts": ["garmin-ical-export=garminicalexport.cmd:main"]
},
install_requires=["vobject", "requests"],
install_requires=["vobject", "requests", "mypy_extensions"],
python_requires=">=3.6",
include_package_data=True,
zip_safe=False
Expand Down

0 comments on commit 89c9f04

Please sign in to comment.