-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 1.13 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
[project]
name = "td-uvmanagedprefab"
version = "0.0.1"
description = "A prefab for TouchDesigner-Projects that will be complelty managed and run by UV."
readme = "README.md"
keywords=["TouchDesigner"]
authors = [] # Required for PyPi-Publishing
license-files = ["LICENSE"] # Do not forgot to adjust ;)
requires-python = ">=3.11"
dependencies = [
"tdp-touchutilcollection>=0.6.0",
]
[tool.uv]
environments = [
"sys_platform =='win32'",
"sys_platform =='darwin'"
]
## Dev Dependencies.
[dependency-groups]
dev = [
"monkeybrain>=0.2.4",
]
## TouchLaucnh Settings
[tool.touchdesigner]
projectfile = "Project.toe" # Adjust if you rename the base project.
enforce-version="closest-build" # Options: strict, closest-build, latest-build, latest-version
## Package Requirements
# Uncomment for Package-Development!
# [build-system]
# requires = ["setuptools>=61.0"]
# build-backend = "setuptools.build_meta"
# [tool.setuptools.packages.find]
# where = ["src"] # Or any folder where the packeg-structure resides on.
# [tool.setuptools.package-data]
# "*" = ["*.tox"] # Otherwise binary tox-files will be ignored.