Spaces:
Sleeping
Sleeping
File size: 1,518 Bytes
060fbda | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | [project]
name = "sorawatermarkcleaner"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiofiles>=24.1.0",
"aiosqlite>=0.21.0",
"diffusers>=0.35.1",
"einops>=0.8.1",
"fastapi==0.108.0",
"ffmpeg-python>=0.2.0",
"fire>=0.7.1",
"greenlet>=3.2.4",
"httpx>=0.28.1",
"huggingface-hub>=0.35.3",
"jupyter>=1.1.1",
"loguru>=0.7.3",
"matplotlib>=3.10.6",
"mmcv-full>=1.7.2",
"notebook>=7.4.7",
"omegaconf>=2.3.0",
"opencv-python>=4.12.0.88",
"pandas>=2.3.3",
"pydantic>=2.11.10",
"python-multipart>=0.0.20",
"requests>=2.32.5",
"rich>=14.2.0",
"ruptures>=1.1.10",
"scikit-learn>=1.7.2",
"sqlalchemy>=2.0.43",
"streamlit>=1.50.0",
"torch>=2.5.0",
"torchvision>=0.20.0",
"tqdm>=4.67.1",
"transformers>=4.57.0",
"ultralytics>=8.3.204",
"uuid>=1.30",
"uvicorn>=0.35.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short --strict-markers"
markers = [
"unit: Unit tests",
"integration: Integration tests",
"slow: Slow running tests",
"gpu: Tests requiring GPU",
]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
[tool.uv.extra-build-dependencies]
mmcv-full = ["setuptools<81", "wheel", "packaging"]
[tool.setuptools.packages.find]
include = ["sorawm*"] |