forked from PrismPipeline/QuiltiX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (68 loc) · 1.79 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
[project]
name = "QuiltiX"
version = "0.4.1"
description = "MaterialX Graphical Node Editor"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = "~=3.9"
keywords = ["openusd", "materialx"]
authors = [
{name = "Manuel Köster", email = "manuelkoestercg@gmail.com" },
{name = "Richard Frangenberg", email = "richard@prism-pipeline.com" },
]
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 = [
"Qt.py",
"PySide2>=5.12",
"PyOpenGL",
"PyOpenGL_accelerate",
# TODO
"NodeGraphQt-QuiltiX-fork",
# "NodeGraphQt @ git+https://github.com/manuelkoester/NodeGraphQt.git@develop",
]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"black",
"ruff",
"pytest",
"pytest-qt",
"pytest-cov",
# TODO
# "Qt.py-stubs @ git+https://github.com/matiascodesal/Qt.py-stubs.git@5a07e53",
# "MaterialX-stubs @ git+https://github.com/manuelkoester/MaterialX-stubs.git@7696cbb"
]
# TODO
# usd = [
# ]
# TODO
# materialx = [
# ]
[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",
]
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120