You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-3-lib/calculate/lib/variables/__init__.py

29 lines
499 B

import sys
from calculate.lib.datavars import ReadonlyVariable
import X11
import locale
import env
import hardware
import linux
import net
import user
import system
#import ldap
from calculate.lib.cl_lang import setLocalTranslate
setLocalTranslate('cl_lib3',sys.modules[__name__])
section = "main"
class VariableClName(ReadonlyVariable):
"""
Package name
"""
value = "calculate-core"
class VariableClVer(ReadonlyVariable):
"""
Package version
"""
value = "3.1.3"