install opentimelineio with provided wheels

This commit is contained in:
Ondrej Samohel 2021-02-24 18:16:30 +01:00
parent be860f92df
commit e9509d8393
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
2 changed files with 17 additions and 5 deletions

View file

@ -1,2 +1,5 @@
[virtualenvs]
in-project = true
[repositories.pype]
url = "http://d.r1.wbsprt.com/pype.club/distribute/"

View file

@ -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 <info@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"