|
""" |
|
|
|
Config file for Streamlit App |
|
|
|
""" |
|
|
|
from member import Member |
|
|
|
|
|
TITLE = "Système de traduction adapté aux lunettes connectées" |
|
|
|
TEAM_MEMBERS = [ |
|
Member( |
|
name="Keyne Dupont ", |
|
linkedin_url="https://www.linkedin.com/in/keyne-dupont/", |
|
github_url="https://github.com/charlessutton", |
|
), |
|
Member( |
|
name="Tia Ratsimbason", |
|
linkedin_url="https://www.linkedin.com/in/tia-ratsimbason-42110887/", |
|
github_url="https://github.com/charlessutton", |
|
), |
|
Member( |
|
name="Olivier Renouard", |
|
linkedin_url="https://www.linkedin.com/in/olivier-renouard/", |
|
github_url="https://github.com/Demosthene-OR/AVR23_CDS_Text_translation", |
|
) |
|
|
|
|
|
] |
|
|
|
PROMOTION = "Promotion Continuous - Data Scientist - April 2023" |
|
|