1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
## Python
These settings apply only when `--python` is specified on the command line.
Please also specify `--python-sdks-folder=<path to the root directory of your azure-sdk-for-python clone>`.
Use `--python-mode=update` if you already have a setup.py and just want to update the code itself.
``` yaml $(python) && !$(track2)
python-mode: create
python:
azure-arm: true
license-header: MICROSOFT_MIT_NO_VERSION
payload-flattening-threshold: 2
namespace: azure.mgmt.machinelearningservices
package-name: azure-mgmt-machinelearningservices
package-version: $(package-version)
clear-output-folder: true
```
``` yaml $(python) && $(track2)
azure-arm: true
license-header: MICROSOFT_MIT_NO_VERSION
namespace: azure.mgmt.machinelearningservices
package-name: azure-mgmt-machinelearningservices
package-version: $(package-version)
clear-output-folder: true
no-namespace-folders: true
```
``` yaml $(python) && $(python-mode) == 'update'
python:
no-namespace-folders: true
output-folder: $(python-sdks-folder)/machinelearning/azure-mgmt-machinelearningservices/azure/mgmt/machinelearningservices
```
``` yaml $(python) && $(python-mode) == 'create'
python:
output-folder: $(python-sdks-folder)/machinelearning/azure-mgmt-machinelearningservices
```
``` yaml $(python) && $(python-mode) == 'create' && $(track2)
python:
output-folder: $(python-sdks-folder)/machinelearning/azure-mgmt-machinelearningservices
output-folder: $(python-sdks-folder)/machinelearning/azure-mgmt-machinelearningservices
```
|