-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
34 lines (30 loc) · 1.06 KB
/
pyproject.toml
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
[build-system]
build-backend = "mesonpy"
requires = ["meson >= 0.61.5", "meson-python >= 0.14.0"]
[project]
name = "wtr-watcher"
version = "0.13.2" # hook: tool/release
authors = [{name = "Will"}]
homepage = "https://github.com/e-dant/watcher"
description = "Filesystem watcher. Works anywhere. Simple, efficient, and friendly."
readme = "readme.md"
license = {file = "license"}
keywords = ["watcher", "filesystem", "events", "async"]
packages = [{include = "watcher"}]
[tool.cibuildwheel]
# Focus on recent releases, time is limited.
skip = ["*p36-*", "*p37-*", "*p38-*", "*p39-*"]
build = ["*"]
free-threaded-support = true
manylinux-x86_64-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"
manylinux-pypy_x86_64-image = "manylinux2014"
manylinux-pypy_aarch64-image = "manylinux2014"
musllinux-x86_64-image = "musllinux_1_2"
musllinux-aarch64-image = "musllinux_1_2"
[tool.cibuildwheel.linux]
# Just the two most common architectures
archs = ["x86_64", "aarch64"]
[tool.cibuildwheel.macos]
# Bug (in cibw?) prevents x86_64 builds, see action files.
archs = ["arm64"]