-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.yaml
More file actions
27 lines (25 loc) · 863 Bytes
/
packages.yaml
File metadata and controls
27 lines (25 loc) · 863 Bytes
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
# Platform Wheels Package Configuration
# This file allows advanced configuration for building Python wheels
#
# Format:
# packages:
# - name: package-name
# version: "==1.0.0" # Optional: version constraint
# source: "pypi" # Optional: "pypi" (default), "url", "git"
# url: "https://..." # Required if source is "url" or "git"
# host_dependencies: # Optional: packages needed on the host system
# - libffi-dev
# - libssl-dev
# pip_dependencies: # Optional: Python packages needed to build
# - setuptools
# - wheel
# patches: # Optional: list of patch files to apply
# - https://example.com/patch1.patch
# - https://example.com/patch2.patch
packages:
# Simple package from PyPI
- name: pyyaml
alias: PyYAML
# Package with version constraint
- name: websockets
version: ">=11.0"