diff --git a/INFOS.py b/INFOS.py index 267076f..d6ac9c3 100644 --- a/INFOS.py +++ b/INFOS.py @@ -1,34 +1,34 @@ -# -*- mode:python; coding: utf-8 -*- +"""Defines the information to be used throughout the builds.""" -"Defines the information to be used throughout the builds" +# -*- mode:python; coding: utf-8 -*- from collections import namedtuple import versioneer TamaasInfo = namedtuple('TamaasInfo', ['version', 'authors', 'maintainer', 'email', 'copyright', 'description']) TAMAAS_INFOS = TamaasInfo( version=versioneer.get_version(), authors=([ u'Lucas Frérot', 'Guillaume Anciaux', 'Valentine Rey', 'Son Pham-Ba', u'Jean-François Molinari' ]), maintainer=u'Lucas Frérot', - email='lfrerot1@jhu.edu', + email='lucas.frerot@imtek.uni-freiburg.de', copyright=( u"Copyright (©) 2016-2022 EPFL " u"(École Polytechnique Fédérale de Lausanne), " u"Laboratory (LSMS - Laboratoire de Simulation en " u"Mécanique des Solides)" ), description='A high-performance library for periodic rough surface contact', )