Hi everyone, is there any way to use a file other ...
# python
f
Hi everyone, is there any way to use a file other than
__main__.py
with Pulumi for Python as the program entrypoint?
c
don’t think so, but you can change the location of the file in the Pulumi.yaml
f
In Python, there should either be a 
__main__.py
 file or a file 
setup.py
 that defines the entry point.
https://www.pulumi.com/docs/intro/concepts/project/
f
Hi @future-barista-68134, thanks! I remember seeing this page but I could figure out exactly how the second way would work. How exactly would one define an entrypoint using a
setup.py
file?
f