Can python be pointed at Gradle dependencies?

I’m currently working on a team that is committed to using python for our automation testing, but we need some type of dependency management system. Having previously used Gradle when developing Java tests I wanted to know whether I could actually build my dependencies using Gradle and then somehow point my Python interpreter at the dependencies I built in Gradle? Either that or is there a method to run some kind of shell command in the test task where I could just run some kind of python build file?

Thanks Greg

Nevermind this post pretty much exemplified my ignorance of how python deals with dependencies. Gradle is obviously not the option for this unless the dev. team wanted to do dependency management in python.