pytex/PyTeX/build/pytex_file/enums.py

9 lines
213 B
Python
Raw Normal View History

2022-02-04 21:14:40 +01:00
from enum import Enum
class PyTeXFileType(Enum):
PyTeXSourceFile = 'PyTeXSourceFile'
TeXSourceFile = 'TeXSourceFile'
TeXOutputFile = 'TeXOutputFile'
TeXDocumentationFile = 'TeXDocumentationFile'