mirror of
https://github.com/recklessop/Zerto_Exporter.git
synced 2026-07-03 16:03:15 -04:00
1f591e20ef
- Version bumped to 3.0.0 to reflect breaking changes: dropped zvma9_7, switched to prometheus_client + JSON stdout logging, removed legacy packages - Remove app/.pypirc (contained leaked PyPI token, now gitignored) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
219 B
Python
11 lines
219 B
Python
# version.py
|
|
VERSION = "3.0.0"
|
|
|
|
def main():
|
|
# Put your main program code here
|
|
print(VERSION)
|
|
|
|
if __name__ == '__main__':
|
|
# This code will be executed only when the file is run as the main program
|
|
main()
|