Hi,
is there a way to run app from an installed python app using src layout installed via pip ?
I tried this :
streamlit run my_python_app
in my pyproject.toml, I have the following entrypoint
[project.scripts]
my_python_app = "streamlit run my_python_app.command_line:main"
command_line.py is the file which launch the streamlit code. If I launch it via this command it works locally :
streamlit run src/my_python_app/command_line.py
Do you know any way to do this ?
Thanks,