-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prep for v0.1.2, added requests_oauthlib as dependency, added manual …
…state parameter for retrieving token
- Loading branch information
Alexander Schillemans
committed
Sep 17, 2021
1 parent
4b8a45c
commit 3496683
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,20 @@ | |
setup( | ||
name = 'python-exact-online', | ||
packages=['exactonline', 'exactonline.models', 'exactonline.constants', 'exactonline.cache', 'exactonline.endpoints'], | ||
version = '0.1.1', | ||
version = '0.1.2', | ||
license='GPL-3.0-or-later', | ||
description = 'Basic wrapper for the Exact Online REST API (v1)', | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author = 'Alexander Schillemans', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/alexanderlhsglobal/python-exact-online', | ||
download_url = 'https://github.com/alexanderlhsglobal/python-exact-online/archive/refs/tags/0.1.1.tar.gz', | ||
download_url = 'https://github.com/alexanderlhsglobal/python-exact-online/archive/refs/tags/0.1.2.tar.gz', | ||
keywords = ['exact', 'exact online', 'api'], | ||
install_requires=[ | ||
'requests', | ||
'oauthlib', | ||
'requests_oauthlib', | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
|