You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25
Original file line number
Diff line number
Diff line change
@@ -581,6 +581,31 @@ package:
581
581
- '**'
582
582
```
583
583
584
+
## Custom Provider Support
585
+
586
+
### Scaleway
587
+
588
+
This plugin is compatible with the [Scaleway Serverless Framework Plugin](https://github.com/scaleway/serverless-scaleway-functions) to package dependencies for Python functions deployed on [Scaleway](https://www.scaleway.com/en/serverless-functions/). To use it, add the following to your `serverless.yml`:
589
+
590
+
```yaml
591
+
provider:
592
+
name: scaleway
593
+
runtime: python311
594
+
595
+
plugins:
596
+
- serverless-python-requirements
597
+
- serverless-scaleway-functions
598
+
```
599
+
600
+
To handle native dependencies, it's recommended to use the Docker builder with the image provided by Scaleway:
601
+
602
+
```yaml
603
+
custom:
604
+
pythonRequirements:
605
+
# Can use any Python version supported by Scaleway
0 commit comments