-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
111 lines (96 loc) · 2.34 KB
/
Copy pathpyproject.toml
File metadata and controls
111 lines (96 loc) · 2.34 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
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
[project]
name = "AYON"
requires-python = "==3.11.9"
version = "1.6.4-dev"
description = "AYON launcher"
authors = [
{name = "Ynput s.r.o.", email = "info@ynput.io"}
]
license = {file = "LICENSE"}
readme = "README.md"
keywords = ["Pipeline", "AYON", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"]
dependencies = [
"ayon-python-api == 1.2.22",
"arrow >=0.4.4,<1",
"Unidecode ~= 1.4.0",
"aiohttp ~= 3.13",
# local settings
"platformdirs",
"coolname",
"keyring ~= 25.7.0",
# terminal formatting
"blessed ~= 1.33", # Use only in helper scripts
"enlighten ~= 1.14.1",
# requirements
"cryptography ~= 46.0.5",
"dnspython ~= 2.8.0",
"urllib3 ~= 2.6.3",
"semver ~= 3.0.4",
"QtPy ~= 2.4.3",
"pywin32 == 311; sys_platform == 'win32'",
"python3-xlib; sys_platform == 'linux'",
"distro == 1.9.0; sys_platform == 'linux'",
"pre-commit>=4.5.1",
]
[project.optional-dependencies]
dev = [
"coverage",
"cx_Freeze ~= 8.6",
"GitPython ~= 3.1.46",
"hatchling",
"jedi ~= 0.19",
"Jinja2 ~= 3.1",
"markupsafe ~= 3.0.3",
"pycodestyle",
"pydocstyle",
"linkify-it-py ~= 2.1.0",
"myst-parser ~= 5.0.0",
"pre-commit",
"pylint ~= 4.0.5",
"pytest ~= 9.0.2",
"pytest-cov",
"pytest-print",
"wheel",
"enlighten", # cool terminal progress bars
]
[project.urls]
"Bug Tracker" = "https://github.com/ynput/ayon-launcher/issues"
"Discussions" = "https://github.com/ynput/ayon-launcher/discussions"
"homepage" = "https://ynput.io"
"documentation" = "https://ayon.ynput.io"
"repository" = "https://github.com/ynput/ayon-launcher"
[tool.uv]
python-preference = "only-managed"
[project.scripts]
ayon = "start:boot"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[ayon]
[ayon.qtbinding.windows]
package = "PySide6"
version = "6.8.3"
[ayon.qtbinding.darwin]
package = "PySide6"
version = "6.8.3"
[ayon.qtbinding.linux]
package = "PySide6"
version = "6.8.3"
[ayon.qtbinding.pyside2]
package = "PySide2"
version = "5.15.2"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["build"]
[tool.pyright]
include = [
"vendor"
]
exclude = [
"**/node_modules",
"**/__pycache__"
]
ignore = [".git"]
reportMissingImports = true
reportMissingTypeStubs = false