Initial upload: EnvSchema v0.1.0 with CI/CD workflow
Some checks failed
CI / test (push) Has been cancelled
Some checks failed
CI / test (push) Has been cancelled
This commit is contained in:
17
envschema/__init__.py
Normal file
17
envschema/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
"""EnvSchema - Environment variable schema validation tool."""
|
||||||
|
|
||||||
|
__version__ = "0.1.0"
|
||||||
|
|
||||||
|
from envschema.schema import Schema, EnvVar, EnvVarType
|
||||||
|
from envschema.core import ValidationEngine, ValidationResult, ValidationError
|
||||||
|
from envschema.loader import EnvLoader
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"Schema",
|
||||||
|
"EnvVar",
|
||||||
|
"EnvVarType",
|
||||||
|
"ValidationEngine",
|
||||||
|
"ValidationResult",
|
||||||
|
"ValidationError",
|
||||||
|
"EnvLoader",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user