I have the following directory structure:
project
├── LICENSE.srt
├── README.md
├── pyproject.toml
├── setup.cfg
└── src
├── bin
│ └── a.out
└── package
├── __init__.py
└── module.py
I am trying to package the above python project with setuptools.
I want to execute the a.out
file from module.py
for which I am using the subprocess module.
How can I get the path for the a.out
file?