Skip to content

Commit 28a85af

Browse files
fix: Changes to metadata and folder strcuture (#7)
1 parent 755fa0e commit 28a85af

File tree

30 files changed

+490
-1863
lines changed

30 files changed

+490
-1863
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ jobs:
6666
- name: Upload build artifacts
6767
uses: softprops/action-gh-release@v1
6868
with:
69+
tag_name: ${{ github.event.inputs.sdk }}-v${{ steps.get_version.outputs.version }}
70+
name: "${{ github.event.inputs.sdk }} v${{ steps.get_version.outputs.version }}"
6971
files: |
7072
packages/${{ github.event.inputs.sdk }}/dist/*.whl
7173
packages/${{ github.event.inputs.sdk }}/dist/*.tar.gz

packages/auth0_api_python/poetry.lock

Lines changed: 77 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/auth0_api_python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tool.poetry]
22
name = "auth0-api-python"
3-
version = "1.0.0.b1"
3+
version = "1.0.0.b2"
44
description = "SDK for verifying access tokens and securing APIs with Auth0, using Authlib."
5-
authors = ["Snehil Kishore snehil.kishore@okta.com"]
5+
authors = ["Auth0 <support@auth0.com>"]
66
license = "MIT"
77
readme = "README.md"
88

packages/auth0_fastapi/poetry.lock

Lines changed: 181 additions & 181 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/auth0_fastapi/pyproject.toml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
[tool.poetry]
22
name = "auth0-fastapi"
3-
version = "1.0.0.b1"
3+
version = "1.0.0.b2"
44
description = "Auth0 FastAPI Python SDK"
55
readme = "README.md"
6-
authors = ["Snehil Kishore <snehil.kishore@okta.com>"]
6+
authors = ["Auth0 <support@auth0.com>"]
77
license = "MIT"
88

99
packages = [
10-
{ include = "auth", from = "src" },
11-
{ include = "errors", from = "src" },
12-
{ include = "server", from = "src" },
13-
{ include = "auth", from = "src" },
14-
{ include = "server", from = "src" },
15-
{ include = "stores", from = "src" },
16-
{ include = "util", from = "src" }
10+
{ include = "auth0_fastapi", from = "src" }
1711
]
1812

1913
[tool.poetry.dependencies]
2014
python = ">=3.9"
21-
auth0-server-python = "1.0.0b1"
15+
auth0-server-python = ">=1.0.0b1"
2216
fastapi = "^0.115.11"
2317
itsdangerous = "^2.2.0"
2418

packages/auth0_fastapi/src/auth/auth_client.py renamed to packages/auth0_fastapi/src/auth0_fastapi/auth/auth_client.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

22
from fastapi import Request, Response, HTTPException, status
33

4-
from stores.cookie_transaction_store import CookieTransactionStore
5-
from stores.stateless_state_store import StatelessStateStore
4+
from auth0_fastapi.stores.cookie_transaction_store import CookieTransactionStore
5+
from auth0_fastapi.stores.stateless_state_store import StatelessStateStore
66

7-
from config import Auth0Config
7+
from auth0_fastapi.config import Auth0Config
88

99
#Imported from auth0-server-python
10-
from auth_server.server_client import ServerClient
11-
from auth_types import (
10+
from auth0_server_python.auth_server.server_client import ServerClient
11+
from auth0_server_python.auth_types import (
1212
StartInteractiveLoginOptions,
1313
LogoutOptions
1414
)

packages/auth0_fastapi/src/errors/__init__.py renamed to packages/auth0_fastapi/src/auth0_fastapi/errors/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from fastapi.responses import JSONResponse
33

44
#Imported from auth0-server-python
5-
from error import (
5+
from auth0_server_python.error import (
66
Auth0Error,
77
MissingTransactionError,
88
ApiError,

0 commit comments

Comments
 (0)