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
@@ -580,6 +580,31 @@ package:
580
580
- '**'
581
581
```
582
582
583
+
## Custom Provider Support
584
+
585
+
### Scaleway
586
+
587
+
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`:
588
+
589
+
```yaml
590
+
provider:
591
+
name: scaleway
592
+
runtime: python311
593
+
594
+
plugins:
595
+
- serverless-python-requirements
596
+
- serverless-scaleway-functions
597
+
```
598
+
599
+
To handle native dependencies, it's recommended to use the Docker builder with the image provided by Scaleway:
600
+
601
+
```yaml
602
+
custom:
603
+
pythonRequirements:
604
+
# Can use any Python version supported by Scaleway
0 commit comments