From e9509d8393b85af632b8ac95a57880bf7eb81d6c Mon Sep 17 00:00:00 2001 From: Ondrej Samohel Date: Wed, 24 Feb 2021 18:16:30 +0100 Subject: [PATCH] install opentimelineio with provided wheels --- poetry.toml | 3 +++ pyproject.toml | 19 ++++++++++++++----- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/poetry.toml b/poetry.toml index ab1033bd37..f05df6491a 100644 --- a/poetry.toml +++ b/poetry.toml @@ -1,2 +1,5 @@ [virtualenvs] in-project = true + +[repositories.pype] +url = "http://d.r1.wbsprt.com/pype.club/distribute/" diff --git a/pyproject.toml b/pyproject.toml index 279cf1ac27..c92e346fd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,16 +4,17 @@ version = "3.0.0" description = "Multi-platform open-source pipeline built around the Avalon platform, expanding it with extra features and integrations." authors = ["Pype Club "] license = "MIT License" +homepage = "https://pype.club" +documentation = "https://pype.club/docs/artist_getting_started" +repository = "https://github.com/pypeclub/pype" +readme = "README.md" +keywords = ["Pipeline", "Avalon", "VFX", "animation", "automation", "tracking", "asset management"] [tool.poetry.dependencies] python = "3.7.*" aiohttp_json_rpc = "*" # TVPaint server acre = { git = "https://github.com/pypeclub/acre.git" } -opentimelineio = [ - { git = "https://github.com/pypeclub/OpenTimelineIO.git", branch="develop", markers = "sys_platform == 'win32'" }, - { git = "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", markers = "sys_platform == 'linux'" }, - { git = "https://github.com/PixarAnimationStudios/OpenTimelineIO.git", markers = "sys_platform == 'darwin'" } -] +opentimelineio = { version = "0.14.0.dev1", source = "pype" } appdirs = "^1.4.3" blessed = "^1.17" # pype terminal formatting clique = "1.5.*" @@ -60,6 +61,14 @@ recommonmark = "*" tqdm = "*" wheel = "*" +[tool.poetry.urls] +"Bug Tracker" = "https://github.com/pypeclub/pype/issues" +"Discussions" = "https://github.com/pypeclub/pype/discussions" + +[[tool.poetry.source]] +name = "pype" +url = "https://d.r1.wbsprt.com/pype.club/distribute/" + [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api"