pytex/base/enums.py

23 lines
416 B
Python
Raw Normal View History

2021-10-06 17:08:53 +02:00
from enum import Enum
class Attributes(Enum):
name_raw = 'name_raw'
2021-10-06 17:08:53 +02:00
author = 'author'
author_acronym = 'author_acronym'
name_lowercase = 'name_lowercase'
prefix = 'prefix'
2021-10-06 17:08:53 +02:00
file_name = 'file_name'
date = 'date'
year = 'year'
2021-10-07 08:58:43 +02:00
source_file_name = 'source_file_name'
version = 'package_version'
2021-10-06 17:08:53 +02:00
class Args(Enum):
one = 0
two = 1
three = 2
four = 3
five = 4