16 lines
363 B
Python
16 lines
363 B
Python
#!/usr/bin/env python3
|
|
""" Extract version number from __init__.py
|
|
"""
|
|
|
|
import os
|
|
|
|
|
|
ski_init = os.path.join(os.path.dirname(__file__), '../__init__.py')
|
|
|
|
data = open(ski_init).readlines()
|
|
version_line = next(line for line in data if line.startswith('__version__'))
|
|
|
|
version = version_line.strip().split(' = ')[1].replace('"', '').replace("'", '')
|
|
|
|
print(version)
|