15 lines
No EOL
310 B
Python
15 lines
No EOL
310 B
Python
from enum import Enum
|
|
|
|
|
|
class PyTeXRootDirType(Enum):
|
|
BUILD = 1
|
|
PYTEX_SOURCE = 2
|
|
DOC = 3
|
|
TEX_SOURCE = 4
|
|
|
|
|
|
class PyTeXFileType(Enum):
|
|
PyTeXSourceFile = 'PyTeXSourceFile'
|
|
TeXSourceFile = 'TeXSourceFile'
|
|
TeXOutputFile = 'TeXOutputFile'
|
|
TeXDocumentationFile = 'TeXDocumentationFile' |