Hi there!
I’m trying to run jobs on an agent I have on a cloud VM. The issue I’m running into is that my local python “package” is not installing:
Obtaining file:/// (from -r requirements.txt (line 1))
ERROR: file:/// (from -r requirements.txt (line 1)) does not appear to be a Python project: neither 'setup.py' nor 'pyproject.toml' found.
My project is structured like this:
- scripts
- src
---- source_code.py
---- __init__.py
requirements.txt
setup.py
Any thoughts/best practices here?