mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
28 lines
844 B
Python
Executable file
28 lines
844 B
Python
Executable file
#!/usr/bin/env python
|
|
"""Get the current Certbot version number.
|
|
|
|
Provides a simple utility for determining the Certbot version number
|
|
|
|
"""
|
|
from __future__ import print_function
|
|
from os.path import abspath, dirname, join
|
|
import re
|
|
|
|
|
|
def certbot_version(letstest_scripts_dir):
|
|
"""Return the version number stamped in certbot/__init__.py."""
|
|
return re.search('''^__version__ = ['"](.+)['"].*''',
|
|
file_contents(join(dirname(dirname(letstest_scripts_dir)),
|
|
'certbot',
|
|
'certbot',
|
|
'__init__.py')),
|
|
re.M).group(1)
|
|
|
|
|
|
def file_contents(path):
|
|
with open(path) as file:
|
|
return file.read()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print(certbot_version(dirname(abspath(__file__))))
|