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