belgie-oauth 0.3.0__tar.gz → 0.3.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: belgie-oauth
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Add your description here
5
5
  Author: Matt LeMay
6
6
  Author-email: Matt LeMay <mplemay@users.noreply.github.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "belgie-oauth"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Add your description here"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -9,7 +9,11 @@ from pydantic_settings import BaseSettings, SettingsConfigDict
9
9
 
10
10
 
11
11
  class OAuthSettings(BaseSettings):
12
- model_config = SettingsConfigDict(env_prefix="BELGIE_OAUTH_")
12
+ model_config = SettingsConfigDict(
13
+ env_prefix="BELGIE_OAUTH_",
14
+ env_file=".env",
15
+ extra="ignore",
16
+ )
13
17
 
14
18
  base_url: AnyHttpUrl | None = None
15
19
  route_prefix: str = "/oauth"
File without changes