Plugins
Plugins are Python packages that can be used to extend the functionality of Pants. To add plugins to your project, add them to your pants.toml
file.
First, you need to add the plugins as dependencies:
[GLOBAL]
plugins = [
"name_of_pypi_package==1.0.0",
]
Then, you may need to add the backends to the backend_packages
list
[GLOBAL]
backend_packages = [
// ... other backends
"name_of_pypi_package.backend",
]
pants-py-deploy
Make it easy to maintain docker-compose files and helm-charts across projects with pants-py-deploy