Merge pull request #716 from THUDM/CogVideoX_dev

Update gitignore patterns and project dependencies
This commit is contained in:
Yuxuan Zhang 2025-02-22 17:09:50 +08:00 committed by GitHub
commit e44c9f2c83
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 51 additions and 23 deletions

12
.gitignore vendored
View File

@ -23,3 +23,15 @@ venv
**/*.mp4
**/validation_set
CogVideo-1.0
**/**foo**
**/sat
**/train_results
**/train_res*
**/**foo**
**/sat
**/train_results
**/train_res*
**/uv.lock

View File

@ -1,27 +1,43 @@
[project]
name = "cogvideo"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"datasets>=2.14.4",
"decord>=0.6.0",
"deepspeed>=0.16.4",
"diffusers>=0.32.2",
"opencv-python>=4.11.0.86",
"peft>=0.13.2",
"pydantic>=2.10.6",
"sentencepiece>=0.2.0",
"torch>=2.5.1",
"torchvision>=0.20.1",
"transformers>=4.46.3",
"wandb>=0.19.7",
]
[tool.ruff]
line-length = 119
[tool.ruff.lint]
# Never enforce `E501` (line length violations).
ignore = ["C901", "E501", "E741", "F402", "F823"]
select = ["C", "E", "F", "I", "W"]
# Ignore import violations in all `__init__.py` files.
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401", "F403", "F811"]
[tool.ruff.lint.isort]
lines-after-imports = 2
exclude = ['.git', '.mypy_cache', '.ruff_cache', '.venv', 'dist']
target-version = 'py310'
line-length = 100
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
line-ending = 'lf'
quote-style = 'preserve'
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.ruff.lint]
select = ["E", "W"]
ignore = [
"E999",
"EXE001",
"UP009",
"F401",
"TID252",
"F403",
"F841",
"E501",
"W293",
]