Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112920132
INFOS.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, May 13, 17:32
Size
1015 B
Mime Type
text/x-python
Expires
Thu, May 15, 17:32 (2 d)
Engine
blob
Format
Raw Data
Handle
26162635
Attached To
rTAMAAS tamaas
INFOS.py
View Options
# -*- mode:python; coding: utf-8 -*-
"Defines the information to be used throughout the builds"
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
=
'lucas.frerot@protonmail.com'
,
copyright
=
(
u"Copyright (©) 2016-2021 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'
,
)
Event Timeline
Log In to Comment