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
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -565,6 +565,31 @@ package:
565
565
- '**'
566
566
```
567
567
568
+
## Custom Provider Support
569
+
570
+
### Scaleway
571
+
572
+
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`:
573
+
574
+
```yaml
575
+
provider:
576
+
name: scaleway
577
+
runtime: python311
578
+
579
+
plugins:
580
+
- serverless-python-requirements
581
+
- serverless-scaleway-functions
582
+
```
583
+
584
+
To handle native dependencies, it's recommended to use the Docker builder with the image provided by Scaleway:
585
+
586
+
```yaml
587
+
custom:
588
+
pythonRequirements:
589
+
# Can use any Python version supported by Scaleway
0 commit comments