Skip to content

Commit

Permalink
Minor fix in dependencies.
Browse files Browse the repository at this point in the history
The new OAuth capacity had some more requirements than were in the
setup.py file. I added requests_oauthlib and future. Works on my
machine, hopefully this will fix the problem brought up in
issue googleapis#70.
  • Loading branch information
Toben Archer authored and Toben Archer committed Jan 4, 2018
1 parent 938a3ec commit 206c6f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ O365/connection.py
O365/contact.py
O365/event.py
O365/fluent_inbox.py
O365/fluent_message.py
O365/group.py
O365/inbox.py
O365/message.py
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
https://github.com/Narcolapser/python-o365'''

setup(name='O365',
version='0.9.9',
version='0.9.11',
description='Python library for working with Microsoft Office 365',
long_description=long_desc,
author='Toben Archer',
Expand All @@ -42,7 +42,7 @@
maintainer_email='sandslash+O365@gmail.com',
url='https://github.com/Narcolapser/python-o365',
packages=['O365'],
install_requires=['requests', 'oauthlib'],
install_requires=['requests', 'oauthlib','requests_oauthlib','future'],
license='Apache 2.0',
classifiers=CLASSIFIERS
)
Expand Down

0 comments on commit 206c6f3

Please sign in to comment.