Add formatters, utils, schemas and version
Some checks failed
CI / test (3.10) (push) Failing after 10s
CI / test (3.11) (push) Failing after 9s
CI / test (3.12) (push) Failing after 9s
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / typecheck (push) Has been cancelled
CI / build-package (push) Has been cancelled
CI / test (3.8) (push) Has been cancelled

This commit is contained in:
2026-01-29 10:50:37 +00:00
parent 6b37d0d1d7
commit d40c0c9703

10
configforge/version.py Normal file
View File

@@ -0,0 +1,10 @@
"""Version information for ConfigForge."""
__version__ = "1.0.0"
VERSION_INFO = {
"major": 1,
"minor": 0,
"patch": 0,
"string": __version__,
}