-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
84 lines (77 loc) · 1.72 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
[tool.mypy]
exclude = [
".git",
'MOPS',
"NukeSurvivalToolkit_publicRelease",
'VFX-LYNX',
'ae_SVG',
'dwpicker.*',
'lib/python',
'maya-timeline-marker_git',
"mayacapture",
'modelChecker',
'pin_shift.py',
'rjg',
'shotgun_api3',
'studiolibrary',
'timeline_marker',
]
files = 'pipeline'
[[tool.mypy.overrides]]
module = "dwpicker"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "modelChecker.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "substance_painter_plugins"
ignore_missing_imports = true
[tool.ruff]
exclude = [
".git",
"MOPS",
"NukeSurvivalToolkit_publicRelease",
"VFX-LYNX",
"ae_SVG",
"dwpicker",
"dwpicker_git",
"lib/python",
"mayacapture",
"maya-timeline-marker_git",
"modelChecker",
"modelChecker_git",
'pin_shift.py',
"rjg",
"shotgun_api3",
"studiolibrary",
"timeline_marker",
]
[tool.poetry]
name = "dungeon-pipeline"
version = "0.1.0"
description = "Pipeline for BYU Animation's Class of 2025 capstone film"
license = "BSD-3"
authors = ["Scott Milner <scottdmilner@gmail.com>"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.9"
attrs = "^24.2.0"
cattrs = "^23.2.3"
numpy = "1.26.4"
ffmpeg-python = "^0.2.0"
qt-py = {extras = ["stubs"], version = "^1.4.1"}
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.7"
mypy = "^1.11.1"
maya-stubs = "^0.4.1"
types-usd = "^24.5.1"
types-houdini = "^19.5.1"
types-katana = "^5.0.5.0"
types-mari = "^5.0.5.0"
types-nuke = "^13.2.8.0"
types-opencolorio = "^2.2.1.2"
types-pyside2 = "^5.15.2.1.7"
types-substance-painter = "^2023.8.3.0.0"
nptyping = "^2.5.0"
qt-py = {extras = ["stubs"], version = "^1.4.1"}