-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
197 lines (168 loc) · 4.22 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "deadline-cloud-for-nuke"
dynamic = ["version"]
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.9"
description = "The submitter and adaptor to enable Nuke support for AWS Deadline Cloud"
authors = [
{name = "Amazon Web Services"},
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
]
dependencies = [
"deadline == 0.48.*",
"openjd-adaptor-runtime >= 0.7,< 0.9",
]
[project.urls]
Homepage = "https://github.com/aws-deadline/deadline-cloud-for-nuke"
Source = "https://github.com/aws-deadline/deadline-cloud-for-nuke"
[project.scripts]
nuke-openjd = "deadline.nuke_adaptor.NukeAdaptor:main"
# The binary name 'NukeAdaptor' is deprecated.
NukeAdaptor = "deadline.nuke_adaptor.NukeAdaptor:main"
[tool.hatch.build]
artifacts = [
"*_version.py",
]
include = [
# Include the starting job template/environment yaml files in the package
"*.yaml",
]
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
version_scheme = "post-release"
[tool.hatch.build.hooks.vcs]
version-file = "_version.py"
[tool.hatch.build.hooks.custom]
path = "hatch_custom_hook.py"
[tool.hatch.build.hooks.custom.copy_version_py]
destinations = [
"src/deadline/nuke_adaptor",
"src/deadline/nuke_util",
"src/deadline/nuke_submitter",
]
[tool.hatch.build.targets.sdist]
include = [
"src/*",
"hatch_custom_hook.py",
]
[tool.hatch.build.targets.wheel]
packages = [
"src/deadline",
]
[tool.mypy]
check_untyped_defs = true
show_error_codes = true
pretty = true
# Tell mypy that there's a namespace package at src/deadline
namespace_packages = true
explicit_package_bases = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = [
"nuke.*",
"PySide2.*",
"PyOpenColorIO.*",
"qtpy.*"
]
ignore_missing_imports = true
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["deadline_worker_agent"]
[tool.black]
line-length = 100
[tool.pytest.ini_options]
xfail_strict = true
addopts = [
"--durations=5",
"--cov=src/deadline/nuke_adaptor",
"--cov=src/deadline/nuke_util",
"--cov=src/deadline/nuke_submitter",
"--color=yes",
"--cov-report=html:build/coverage",
"--cov-report=xml:build/coverage/coverage.xml",
"--cov-report=term-missing",
"--numprocesses=auto",
]
testpaths = [ "test/unit" ]
looponfailroots = [
"src",
"test/unit",
]
# looponfailroots is deprecated, this removes the deprecation from the test output
filterwarnings = [
"ignore::DeprecationWarning"
]
[tool.coverage.run]
source_pkgs = [ "deadline/nuke_adaptor", "deadline/nuke_util", "deadline/nuke_submitter" ]
branch = true
parallel = true
omit = [
"**/__main__.py",
"**/_version.py",
"*/deadline/nuke_submitter/ui/*",
# The submitter will be covered by job bundle output tests
"*/deadline/nuke_submitter/deadline_submitter_for_nuke.py"
]
[tool.coverage.paths]
source = [
"src/"
]
[tool.coverage.report]
show_missing = true
fail_under = 72
[tool.semantic_release]
# Can be removed or set to true once we are v1
major_on_zero = false
tag_format = "{version}"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"style",
"refactor",
"test",
]
minor_tags = []
patch_tags = [
"chore",
"feat",
"fix",
"refactor",
]
[tool.semantic_release.publish]
upload_to_vcs_release = false
[tool.semantic_release.changelog]
template_dir = ".semantic_release"
[tool.semantic_release.changelog.environment]
trim_blocks = true
lstrip_blocks = true
[tool.semantic_release.branches.release]
match = "(mainline|release)"