-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
85 lines (71 loc) · 1.83 KB
/
pyproject.toml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "QuiltiX"
version = "0.7.0"
description = "MaterialX Graphical Node Editor"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = "~=3.11"
keywords = ["openusd", "materialx"]
authors = [
{name = "Manuel Köster", email = "[email protected]" },
{name = "Richard Frangenberg", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Topic :: Multimedia :: Graphics :: Editors",
]
dependencies = [
"pluggy",
"materialx==1.38.9",
"QtPy",
"PySide6~=6.6",
"PyOpenGL",
"PyOpenGL_accelerate",
# "OpenUSD_build @ git+https://github.com/PrismPipeline/[email protected]"
"NodeGraphQt-QuiltiX-fork~=0.7",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"black",
"ruff",
"pytest",
"pytest-qt",
"pytest-cov",
# "MaterialX-stubs @ git+https://github.com/manuelkoester/MaterialX-stubs.git@7696cbb"
]
plugins = [
"pygments",
"materialxjson"
]
all = [
"QuiltiX[dev]",
"QuiltiX[plugins]",
]
[project.urls]
"Homepage" = "https://github.com/PrismPipeline/QuiltiX"
"Bug Reports" = "https://github.com/PrismPipeline/QuiltiX/issues"
"Source" = "https://github.com/PrismPipeline/QuiltiX"
[project.gui-scripts]
quiltix = "QuiltiX:quiltix"
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--cov=QuiltiX"
testpaths = [
"tests",
]
log_cli=true
log_level="DEBUG"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120