I have project, that runs has python and scala components. I want to distribute it as a pip-package.
The current install-routine is:
git clone <project>
cd <project>
mvn package
pip install -r requirements.txt
and I want it to be just
pip install <project>.zip
The problem here is, as far as I can see, that I need to define mvn
as a dependency, and then invoke it during install.