ProfessorLeVesseur's picture
Create app_config.py
e993cf9 verified
raw
history blame
500 Bytes
import streamlit as st
class AppConfig:
def __init__(self):
self.setup_page()
def setup_page(self):
st.set_page_config(
page_title="Intervention Program Analysis",
page_icon=":bar_chart:",
layout="centered",
initial_sidebar_state="auto",
menu_items={
'Get Help': 'mailto:[email protected]',
'About': "This app is built to support spreadsheet analysis"
}
)