From 9f34b8148e710f4451fc05ecac897b4d8613b50b Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 9 Jan 2024 16:24:42 +0100 Subject: [PATCH 1/5] use correct repository url --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 658a6c2c9..1d604674c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Ynput s.r.o. "] license = "MIT License" homepage = "https://ynput.io" documentation = "https://ayon.ynput.io" -repository = "https://github.com/ynput/OpenPype" +repository = "https://github.com/ynput/ayon-launcher" readme = "README.md" keywords = ["Pipeline", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"] packages = [ From ae54c96c745c4dd9c3ffa68765bcd1ac07dfe177 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 9 Jan 2024 16:24:56 +0100 Subject: [PATCH 2/5] add AYON to keywords --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1d604674c..37bac7f17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ homepage = "https://ynput.io" documentation = "https://ayon.ynput.io" repository = "https://github.com/ynput/ayon-launcher" readme = "README.md" -keywords = ["Pipeline", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"] +keywords = ["Pipeline", "AYON", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"] packages = [ {include = "tools"}, {include = "start.py"}, From afc7708699ef39a541e6746f8a374a8c5ed77f1f Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 9 Jan 2024 16:27:12 +0100 Subject: [PATCH 3/5] rearanged dependencies --- pyproject.toml | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 37bac7f17..9562cbc91 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,26 +23,32 @@ packages = [ azon = 'start:boot' [tool.poetry.dependencies] -ayon-python-api = "*" python = ">=3.9.1,<3.10" +# ayon python api +ayon-python-api = "*" +arrow = "^0.17" +Unidecode = "1.2.0" aiohttp = "^3.7" -acre = { git = "https://github.com/pypeclub/acre.git" } +# local settings appdirs = { git = "https://github.com/ActiveState/appdirs.git", branch = "master" } -blessed = "^1.17" # terminal formatting -urllib3 = "1.26.16" coolname = "*" -Click = "^8" -dnspython = "^2.1.0" -arrow = "^0.17" keyring = "^22.0.1" +# environment variables resolving +acre = { git = "https://github.com/pypeclub/acre.git" } +# terminal formatting +blessed = "^1.17" # Use only in helper scripts +enlighten = "^1.9.0" +# requirements +cryptography = "39.0.0" +dnspython = "^2.1.0" +urllib3 = "1.26.16" +semver = "^2.13.0" QtPy = "^2.3.0" -six = "^1.15" -semver = "^2.13.0" # for version resolution pywin32 = { version = "301", markers = "sys_platform == 'win32'" } python3-xlib = { version="*", markers = "sys_platform == 'linux'"} -enlighten = "^1.9.0" -Unidecode = "1.2.0" -cryptography = "39.0.0" +# move to core addon +Click = "^8" +six = "^1.15" [tool.poetry.dev-dependencies] flake8 = "^6.0" From 15023366c51a8134daa1c12d91e7289eefcd13f4 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 9 Jan 2024 16:28:39 +0100 Subject: [PATCH 4/5] fix scripts --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9562cbc91..0d3918bbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ packages = [ ] [tool.poetry.scripts] -azon = 'start:boot' +ayon = "start:boot" [tool.poetry.dependencies] python = ">=3.9.1,<3.10" From c0ce3faf16fba11d24b3439e2c3559bc1035cd14 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Wed, 10 Jan 2024 11:10:39 +0100 Subject: [PATCH 5/5] change another git urls --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0d3918bbd..ef966d4f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,8 +73,8 @@ toml = "^0.10.2" # for parsing pyproject.toml pre-commit = "*" [tool.poetry.urls] -"Bug Tracker" = "https://github.com/ynput/OpenPype/issues" -"Discussions" = "https://github.com/ynput/OpenPype/discussions" +"Bug Tracker" = "https://github.com/ynput/ayon-launcher/issues" +"Discussions" = "https://github.com/ynput/ayon-launcher/discussions" [build-system] requires = ["poetry-core>=1.0.0"]