mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
6 lines
163 B
Python
6 lines
163 B
Python
from .api.specification import MAJOR_VERSION, MINOR_VERSION
|
|
|
|
|
|
version = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
|
|
version_info = (MAJOR_VERSION, MINOR_VERSION)
|