-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (24 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
30 lines (24 loc) · 947 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
28
29
30
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "meds_etl_cpp"
dynamic = ["version"]
description = "Optimized algorithms for meds_etl implemented in C++."
readme = "README.md"
requires-python=">3.9"
license = "Apache-2.0"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["meds_etl_cpp"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[tool.cibuildwheel]
skip = ["*-musllinux_* pp*"]
archs = ["auto64"]
before-build = "git restore native/MODULE.bazel.lock"
[tool.cibuildwheel.linux]
before-all = "bash build/linux_setup.sh"
[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET="12" }