-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 955 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 955 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
32
33
34
35
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SPOUT2ForPython"
version = "0.1.0"
description = "Python bindings for Spout2 GPU texture sharing (Windows only)"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Unveil Studio" }]
keywords = ["spout", "spout2", "texture sharing", "gpu", "video", "opengl", "directx", "touchdesigner"]
classifiers = [
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Video",
]
[project.optional-dependencies]
torch = ["numpy", "torch"]
image = ["Pillow"]
[project.urls]
Repository = "https://github.com/UnveilStudio/SPOUT2ForPython"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["spout*"]
[tool.setuptools.package-data]
spout = ["SpoutLibrary.dll"]