ssbu_lokrez/lokrez/version.py

27 lines
586 B
Python
Raw Permalink Normal View History

2020-07-06 04:39:39 -04:00
NAME = "lokrez"
2020-07-22 12:06:48 -04:00
DESCRIPTION = "Smash.gg-connected top8 graphics generator for Super Smash " \
"Bros Ultimate tournaments"
URL = "https://git.lertsenem.com/lertsenem/ssbu_lokrez"
AUTHOR = "Lertsenem"
ENTITY = "Smash@Lyon"
AUTHOR_EMAIL = "lertsenem@lertsenem.com"
ENTITY_EMAIL = "dev@smashatlyon.com"
2020-07-06 04:39:39 -04:00
2021-08-02 12:24:21 -04:00
VERSION_MAJOR = 4
VERSION_MINOR = 0
2020-07-06 04:39:39 -04:00
VERSION_PATCH = 0
2020-07-20 17:54:32 -04:00
__version__ = "{}.{}.{}.dev".format(
2020-07-06 04:39:39 -04:00
VERSION_MAJOR,
VERSION_MINOR,
VERSION_PATCH,
)
VERSION_NAME = "{} - {}".format(
NAME,
__version__,
)
2020-07-22 12:06:48 -04:00
__license__ = "MIT"