8 lines
120 B
Python
8 lines
120 B
Python
from enum import Enum
|
|
|
|
|
|
class PyTeXRootDirType(Enum):
|
|
BUILD = 1
|
|
PYTEX_SOURCE = 2
|
|
DOC = 3
|
|
TEX_SOURCE = 4
|