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
|
|
|
|
2020-07-19 16:27:50 -04:00
|
|
|
VERSION_MAJOR = 1
|
|
|
|
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"
|