Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122206709
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
Wed, Jul 16, 15:38
Size
1015 B
Mime Type
text/x-python
Expires
Fri, Jul 18, 15:38 (2 d)
Engine
blob
Format
Raw Data
Handle
27421024
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