pytex/enums.py
2021-10-07 08:59:07 +02:00

22 lines
412 B
Python

from enum import Enum
class Attributes(Enum):
package_name_raw = 'package_name_raw'
author = 'author'
author_acronym = 'author_acronym'
package_name = 'package_name'
package_prefix = 'package_prefix'
file_name = 'file_name'
date = 'date'
year = 'year'
source_file_name = 'source_file_name'
class Args(Enum):
one = 0
two = 1
three = 2
four = 3
five = 4