1config BR2_PACKAGE_PYTHON_ENUM 2 bool "python-enum" 3 depends on BR2_PACKAGE_PYTHON 4 help 5 Robust enumerated type support in Python 6 7 An enumeration object is an immutable sequence object built 8 from a sequence of strings. Each value is also available as 9 an attribute. Such values are constant. Comparisons and 10 enumeration are supported. 11 12 https://pypi.python.org/pypi/enum 13