-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (43 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
51 lines (43 loc) · 1.41 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
[build-system]
requires = ["scikit-build-core>=0.10", "nanobind>=2.4.0"]
build-backend = "scikit_build_core.build"
[project]
name = "touchpy"
version = "0.12.1"
authors = [
{ name = "Keith Lostracco", email = "keith@intentdev.io" }
]
description = "TouchPy is a high-performance toolset to work with TouchDesigner components in Python"
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.9,<3.15"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: Microsoft :: Windows",
]
[project.optional-dependencies]
examples = ["torch", "torchvision", "numpy"]
dev = ["pytest", "sphinx", "furo", "sphinx-autoapi"]
[project.urls]
Documentation = "https://intentdev.github.io/touchpy/"
GitHub = "https://github.com/IntentDev/touchpy"
[tool.uv.sources]
torch = { index = "pytorch-cu126" }
torchvision = { index = "pytorch-cu126" }
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
[tool.scikit-build]
minimum-version = "0.10"
build-dir = "build/{wheel_tag}"
wheel.packages = ["src/touchpy"]
[tool.cibuildwheel]
build-verbosity = 1
[tool.cibuildwheel.windows]
archs = ["AMD64"]