We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8af742 commit 7d44423Copy full SHA for 7d44423
poetry.toml
@@ -1,2 +1,2 @@
1
-[virtualenvs]
2
-in-project = true
+# [virtualenvs]
+# in-project = true
pyproject.toml
@@ -32,6 +32,7 @@ inflection = "^0.5.1"
32
dynaconf = "^3.1.12"
33
Faker = "^23.1.0"
34
boltons = "^24.0.0"
35
+pydantic = "^2.7.4"
36
37
38
[tool.poetry.dev-dependencies]
src/qpybase/__init__.py
@@ -1,3 +1,3 @@
-from .base_config import settings
+from .base_config import *
from .errors import *
3
from .loggers.loggers import *
src/qpybase/base_config.py
@@ -1,5 +1,6 @@
from dynaconf import Dynaconf
from pydantic import BaseModel
+from typing import Type
4
5
settings = Dynaconf(
6
envar_prefix="fluent",
0 commit comments