From ed8e3788ea6b9c96bef9d2d79aa14c48d27e63e7 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 22 Mar 2026 15:13:51 +0000 Subject: [PATCH] Initial upload: EnvSchema v0.1.0 with CI/CD workflow --- envschema/__init__.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 envschema/__init__.py diff --git a/envschema/__init__.py b/envschema/__init__.py new file mode 100644 index 0000000..dc13d97 --- /dev/null +++ b/envschema/__init__.py @@ -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", +] \ No newline at end of file