|
[build-system] |
|
requires = ["setuptools>=61.0"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[project] |
|
name = "opensora" |
|
version = "1.0.0" |
|
description = "Reproduce OpenAI's Sora." |
|
readme = "README.md" |
|
requires-python = ">=3.8" |
|
classifiers = [ |
|
"Programming Language :: Python :: 3", |
|
"License :: OSI Approved :: Apache Software License", |
|
] |
|
dependencies = [ |
|
"torch==2.1.2", "torchvision==0.16.2", |
|
"transformers==4.39.1", "accelerate==0.28.0", |
|
"albumentations==1.4.0", "av==11.0.0", "decord==0.6.0", "einops==0.7.0", "fastapi==0.110.0", |
|
"gdown==5.1.0", "h5py==3.10.0", "idna==3.6", 'imageio==2.34.0', "matplotlib==3.7.5", "numpy==1.24.4", |
|
"omegaconf==2.1.1", "opencv-python==4.9.0.80", "opencv-python-headless==4.9.0.80", "pandas==2.0.3", "pillow==10.2.0", |
|
"pydub==0.25.1", "pytorch-lightning==1.4.2", "pytorchvideo==0.1.5", "PyYAML==6.0.1", "regex==2023.12.25", |
|
"requests==2.31.0", "scikit-learn==1.3.2", "scipy==1.10.1", "six==1.16.0", "test-tube==0.7.5", |
|
"timm==0.9.16", "torchdiffeq==0.2.3", "torchmetrics==0.5.0", "tqdm==4.66.2", "urllib3==2.2.1", "uvicorn==0.27.1", |
|
"diffusers==0.24.0", "scikit-video==1.1.11", "imageio-ffmpeg==0.4.9", "sentencepiece==0.1.99", "beautifulsoup4==4.12.3", |
|
"ftfy==6.1.3", "moviepy==1.0.3", "wandb==0.16.3", "tensorboard==2.14.0" |
|
] |
|
|
|
[project.optional-dependencies] |
|
train = ["deepspeed==0.9.5", "pydantic==1.10.13"] |
|
dev = ["mypy==1.8.0"] |
|
|
|
|
|
[project.urls] |
|
"Homepage" = "https://github.com/PKU-YuanGroup/Open-Sora-Plan" |
|
"Bug Tracker" = "https://github.com/PKU-YuanGroup/Open-Sora-Plan/issues" |
|
|
|
[tool.setuptools.packages.find] |
|
exclude = ["assets*", "docker*", "docs", "scripts*"] |
|
|
|
[tool.wheel] |
|
exclude = ["assets*", "docker*", "docs", "scripts*"] |
|
|
|
[tool.mypy] |
|
warn_return_any = true |
|
warn_unused_configs = true |
|
ignore_missing_imports = true |
|
disallow_untyped_calls = true |
|
check_untyped_defs = true |
|
no_implicit_optional = true |
|
|