-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.9 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
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
# WARNING: This file is used only for development done on this addon.
# Be aware that dependencies used here might not match the ones used by
# the specific addon bundle set up on the AYON server. This file should
# be used only for local development and CI/CD purposes.
[project]
name = "ayon-core"
version = "1.9.0+dev"
description = "AYON core provides the base building blocks for all other AYON addons and integrations and is responsible for discovery and initialization of other addons."
authors = [
{name = "Ynput s.r.o.", email = "info@ynput.io"}
]
license = {file = "LICENSE"}
readme = "README.md"
package-mode = false
requires-python = ">=3.9.1,<3.10"
dependencies = [
"pytest >=8.0.0",
"pytest-print >=1.0.0",
"ayon-python-api >=1.0.0",
"arrow ==0.17.0",
"ruff >=0.11.7",
"pre-commit >=4.0.0",
"codespell >=2.2.6",
"semver >=3.0.2",
"mypy >=1.14.0",
"mock >=5.0.0",
"nxtools >=1.6.0",
"attrs >=25.0.0",
"pyblish-base >=1.8.7",
"clique >=2.0.0",
"opentimelineio ==0.17.0",
"speedcopy >=2.1.0",
"qtpy >=2.4.3",
"pyside6 >=6.5.2",
"pytest-ayon @ git+https://github.com/ynput/pytest-ayon.git"
]
[tool.codespell]
# Ignore words that are not in the dictionary.
ignore-words-list = "ayon,ynput,parms,parm,hda,developpement"
# Ignore lines that contain this regex. This is hack for missing inline ignore.
# Remove with next codespell release (>2.2.6)
ignore-regex = ".*codespell:ignore.*"
skip = "./.*,./package/*,*/client/ayon_core/vendor/*"
count = true
quiet-level = 3
[tool.mypy]
mypy_path = "$MYPY_CONFIG_FILE_DIR/client"
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "INFO"
addopts = "-ra -q"
testpaths = [
"client/ayon_core/tests"
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"api: API tests",
"cli: CLI tests",
"slow: Slow tests",
"server: Tests that require a running AYON server",
]