-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 776 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
31
[build-system]
requires = ["setuptools>=42", "scikit-build>=0.13", "cmake>=3.19"]
build-backend = "setuptools.build_meta"
[project]
name = "pyanime4k"
version = "3.1.0"
license = {text = "MIT"}
requires-python = ">=3.8"
readme = "README.md"
dependencies = ["numpy"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Unix",
]
[tool.cibuildwheel]
skip = ["pp*", "*win32", "*i686", "*musllinux*"]
build-verbosity = 1
[tool.cibuildwheel.macos]
environment = "MACOSX_DEPLOYMENT_TARGET=10.15"
[tool.cibuildwheel.linux]
before-all = [
"yum install -y epel-release",
"yum install -y ocl-icd ocl-icd-devel opencl-headers",
]