prism_project.py
Every Prism project needs a prism_project.py
file. This file serves two purposes:
It tells Prism that the directory is indeed a project
It contains information about your Python environment and project.
Here's what the default prism_project.py
file looks like:
Critical: All prism projects require a prism_project.py
file. This file tells prism that it is working inside a valid project.
The prism_project.py
is a normal Python module with variables representing Prism settings and project parameters. Next, we provide some more detail on specific settings, such as:
More on these next.