django-gmailapi-backend 0.3.2__tar.gz → 0.3.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/PKG-INFO +14 -5
  2. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/PKG-INFO +14 -5
  3. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/entry_points.txt +0 -1
  4. django_gmailapi_backend-0.3.3/gmailapi_backend/__init__.py +1 -0
  5. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/gmailapi_backend/mail.py +1 -1
  6. django-gmailapi-backend-0.3.2/gmailapi_backend/__init__.py +0 -1
  7. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/LICENSE +0 -0
  8. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/README.md +0 -0
  9. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/SOURCES.txt +0 -0
  10. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/dependency_links.txt +0 -0
  11. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/requires.txt +0 -0
  12. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/django_gmailapi_backend.egg-info/top_level.txt +0 -0
  13. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/gmailapi_backend/bin/__init__.py +0 -0
  14. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/gmailapi_backend/bin/gmail_oauth2.py +0 -0
  15. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/requirements.txt +0 -0
  16. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/setup.cfg +0 -0
  17. {django-gmailapi-backend-0.3.2 → django_gmailapi_backend-0.3.3}/setup.py +0 -0
@@ -1,12 +1,11 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: django-gmailapi-backend
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Email backend for Django which sends email via the Gmail API
5
5
  Home-page: https://github.com/dolfim/django-gmailapi-backend
6
6
  Author: Michele Dolfi
7
7
  Author-email: michele.dolfi@gmail.com
8
8
  License: Apache License 2.0
9
- Platform: UNKNOWN
10
9
  Classifier: Intended Audience :: Developers
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Operating System :: MacOS :: MacOS X
@@ -23,6 +22,18 @@ Classifier: Topic :: Communications :: Email
23
22
  Classifier: Development Status :: 4 - Beta
24
23
  Description-Content-Type: text/markdown
25
24
  License-File: LICENSE
25
+ Requires-Dist: google-api-python-client~=2.0
26
+ Requires-Dist: google-auth<3.0.0dev,>=1.16.0
27
+ Dynamic: author
28
+ Dynamic: author-email
29
+ Dynamic: classifier
30
+ Dynamic: description
31
+ Dynamic: description-content-type
32
+ Dynamic: home-page
33
+ Dynamic: license
34
+ Dynamic: license-file
35
+ Dynamic: requires-dist
36
+ Dynamic: summary
26
37
 
27
38
  # Django Gmail API backend
28
39
 
@@ -89,5 +100,3 @@ the setup of the API credentials. The following outlines the key steps:
89
100
  --scope="https://www.googleapis.com/auth/gmail.send"
90
101
  ```
91
102
 
92
-
93
-
@@ -1,12 +1,11 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: django-gmailapi-backend
3
- Version: 0.3.2
3
+ Version: 0.3.3
4
4
  Summary: Email backend for Django which sends email via the Gmail API
5
5
  Home-page: https://github.com/dolfim/django-gmailapi-backend
6
6
  Author: Michele Dolfi
7
7
  Author-email: michele.dolfi@gmail.com
8
8
  License: Apache License 2.0
9
- Platform: UNKNOWN
10
9
  Classifier: Intended Audience :: Developers
11
10
  Classifier: License :: OSI Approved :: Apache Software License
12
11
  Classifier: Operating System :: MacOS :: MacOS X
@@ -23,6 +22,18 @@ Classifier: Topic :: Communications :: Email
23
22
  Classifier: Development Status :: 4 - Beta
24
23
  Description-Content-Type: text/markdown
25
24
  License-File: LICENSE
25
+ Requires-Dist: google-api-python-client~=2.0
26
+ Requires-Dist: google-auth<3.0.0dev,>=1.16.0
27
+ Dynamic: author
28
+ Dynamic: author-email
29
+ Dynamic: classifier
30
+ Dynamic: description
31
+ Dynamic: description-content-type
32
+ Dynamic: home-page
33
+ Dynamic: license
34
+ Dynamic: license-file
35
+ Dynamic: requires-dist
36
+ Dynamic: summary
26
37
 
27
38
  # Django Gmail API backend
28
39
 
@@ -89,5 +100,3 @@ the setup of the API credentials. The following outlines the key steps:
89
100
  --scope="https://www.googleapis.com/auth/gmail.send"
90
101
  ```
91
102
 
92
-
93
-
@@ -1,3 +1,2 @@
1
1
  [console_scripts]
2
2
  gmail_oauth2 = gmailapi_backend.bin.gmail_oauth2:main
3
-
@@ -0,0 +1 @@
1
+ __version__ = '0.3.3'
@@ -28,7 +28,7 @@ class GmailBackend(BaseEmailBackend):
28
28
  credentials = google.oauth2.credentials.Credentials(
29
29
  'token',
30
30
  refresh_token=self.refresh_token,
31
- token_uri='https://accounts.google.com/o/oauth2/token',
31
+ token_uri='https://oauth2.googleapis.com/token',
32
32
  client_id=self.client_id,
33
33
  client_secret=self.client_secret
34
34
  )
@@ -1 +0,0 @@
1
- __version__ = '0.3.2'