File size: 926 Bytes
d441014 | 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 | from setuptools import setup, find_packages
setup(
name="vefx-reward",
version="0.1.0",
description="VEFX-Reward: A reward model for video editing quality assessment",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/taco-group/VEFX-Bench",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"torch>=2.1.0",
"torchvision>=0.16.0",
"transformers>=4.51.0",
"accelerate>=0.30.0",
"safetensors>=0.4.0",
"huggingface_hub>=0.20.0",
"Pillow>=10.0.0",
"numpy>=1.24.0",
"requests",
"packaging",
"decord>=0.6.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)
|