-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (51 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (51 loc) · 1.62 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# pyproject.toml
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bridge-python-sdk"
version = "1.0.2"
description = "Bridge Python SDK for Looking Glass Factory"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "Alec Zinsli (Looking Glass Factory)", email = "alec.zinsli@lookingglassfactory.com"}
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux"
]
keywords = ["looking-glass", "graphics", "sdk"]
dynamic = ["dependencies"]
[project.urls]
Homepage = "https://github.com/your-org/bridge-python-sdk"
Issues = "https://github.com/your-org/bridge-python-sdk/issues"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["bridge_python_sdk*"]
[tool.setuptools.package-data]
bridge_python_sdk = [
"bin/win/*.dll",
"bin/mac-m1/*.dylib",
"bin/mac-x64/*.dylib",
"bin/ubuntu/*.so"
]
[tool.setuptools.exclude-package-data]
bridge_python_sdk = ["*.pdb"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
# ---------- optional CI wheel automation ----------
[tool.cibuildwheel]
skip = ["pp*", "cp27*", "cp35*"]
archs = ["auto"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"] # or "universal2"
repair-wheel-command = "delocate-wheel {wheel} -w {dest_dir}"
[tool.cibuildwheel.linux]
manylinux-x86_64-image = "quay.io/pypa/manylinux2014_x86_64"
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"