plain.oauth 0.0.0__tar.gz → 0.1.1__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 (19) hide show
  1. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/PKG-INFO +9 -12
  2. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/README.md +1 -1
  3. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/README.md +1 -1
  4. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/models.py +2 -1
  5. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/pyproject.toml +7 -8
  6. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/LICENSE +0 -0
  7. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/__init__.py +0 -0
  8. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/admin.py +0 -0
  9. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/config.py +0 -0
  10. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/exceptions.py +0 -0
  11. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/migrations/0001_initial.py +0 -0
  12. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/migrations/0002_alter_oauthconnection_options_and_more.py +0 -0
  13. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/migrations/0003_alter_oauthconnection_access_token_and_more.py +0 -0
  14. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/migrations/0004_alter_oauthconnection_access_token_and_more.py +0 -0
  15. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/migrations/__init__.py +0 -0
  16. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/providers.py +0 -0
  17. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/templates/oauth/error.html +0 -0
  18. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/urls.py +0 -0
  19. {plain_oauth-0.0.0 → plain_oauth-0.1.1}/plain/oauth/views.py +0 -0
@@ -1,26 +1,23 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plain.oauth
3
- Version: 0.0.0
4
- Summary:
5
- Home-page: https://github.com/forgepackages/plain-oauth
6
- License: MIT
3
+ Version: 0.1.1
4
+ Summary: OAuth login and API access for Plain.
5
+ Home-page: https://plainframework.com
6
+ License: BSD-3-Clause
7
7
  Author: Dave Gaeddert
8
8
  Author-email: dave.gaeddert@dropseed.dev
9
- Requires-Python: >=3.8,<4.0
10
- Classifier: License :: OSI Approved :: MIT License
9
+ Requires-Python: >=3.11,<4.0
10
+ Classifier: License :: OSI Approved :: BSD License
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.8
13
- Classifier: Programming Language :: Python :: 3.9
14
- Classifier: Programming Language :: Python :: 3.10
15
12
  Classifier: Programming Language :: Python :: 3.11
16
13
  Classifier: Programming Language :: Python :: 3.12
17
- Project-URL: Documentation, https://github.com/forgepackages/plain-oauth
18
- Project-URL: Repository, https://github.com/forgepackages/plain-oauth
14
+ Project-URL: Documentation, https://plainframework.com/docs/
15
+ Project-URL: Repository, https://github.com/dropseed/plain
19
16
  Description-Content-Type: text/markdown
20
17
 
21
18
  <!-- This file is compiled from plain-oauth/plain/oauth/README.md. Do not edit this file directly. -->
22
19
 
23
- # plain-oauth
20
+ # plain.oauth
24
21
 
25
22
  Let users log in with OAuth providers.
26
23
 
@@ -1,6 +1,6 @@
1
1
  <!-- This file is compiled from plain-oauth/plain/oauth/README.md. Do not edit this file directly. -->
2
2
 
3
- # plain-oauth
3
+ # plain.oauth
4
4
 
5
5
  Let users log in with OAuth providers.
6
6
 
@@ -1,4 +1,4 @@
1
- # plain-oauth
1
+ # plain.oauth
2
2
 
3
3
  Let users log in with OAuth providers.
4
4
 
@@ -1,7 +1,8 @@
1
1
  from typing import TYPE_CHECKING
2
2
 
3
- from plain import models, transaction
3
+ from plain import models
4
4
  from plain.auth import get_user_model
5
+ from plain.models import transaction
5
6
  from plain.models.db import IntegrityError, OperationalError, ProgrammingError
6
7
  from plain.preflight import Error
7
8
  from plain.runtime import settings
@@ -1,14 +1,13 @@
1
1
  [tool.poetry]
2
2
  name = "plain.oauth"
3
- version = "0.0.0"
4
- description = ""
3
+ version = "0.1.1"
4
+ description = "OAuth login and API access for Plain."
5
5
  authors = ["Dave Gaeddert <dave.gaeddert@dropseed.dev>"]
6
- license = "MIT"
6
+ license = "BSD-3-Clause"
7
7
  readme = "README.md"
8
- homepage = "https://github.com/forgepackages/plain-oauth"
9
- documentation = "https://github.com/forgepackages/plain-oauth"
10
- repository = "https://github.com/forgepackages/plain-oauth"
11
- keywords = []
8
+ homepage = "https://plainframework.com"
9
+ documentation = "https://plainframework.com/docs/"
10
+ repository = "https://github.com/dropseed/plain"
12
11
  packages = [
13
12
  { include = "plain" },
14
13
  ]
@@ -19,7 +18,7 @@ PLAIN_SETTINGS_MODULE = "tests.settings"
19
18
  FAIL_INVALID_TEMPLATE_VARS = true
20
19
 
21
20
  [tool.poetry.dependencies]
22
- python = "^3.8"
21
+ python = "^3.11"
23
22
 
24
23
  [tool.poetry.dev-dependencies]
25
24
  black = "^22.1.0"
File without changes