Skip to content

Commit

Permalink
add fire to setup requires
Browse files Browse the repository at this point in the history
  • Loading branch information
b4tman committed May 1, 2021
1 parent 8b2f35b commit 5e01b6d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,22 @@

'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
python_requires='>=3.6',
install_requires = [
install_requires=[
'google-auth>=1.5.0',
'google-api-python-client>=1.7.0',
'icalendar>=4.0.1',
'pytz',
'PyYAML>=3.13'
'PyYAML>=3.13',
'fire>=0.4.0'
],
entry_points={
"console_scripts": [
"sync-ics2gcal = sync_ics2gcal.sync_calendar:main",
"manage-ics2gcal = sync_ics2gcal.manage_calendars:main",
]
}
)
)

0 comments on commit 5e01b6d

Please sign in to comment.