TSTAR / setup.py
ZihanWang314's picture
Upload folder using huggingface_hub
d686824 verified
raw
history blame contribute delete
692 Bytes
# minimal setup.py file
import setuptools
setuptools.setup(
name="T-Star",
version="0.0.1",
author="Author",
author_email="",
install_requires=[
"decord",
"openai",
"asyncio",
"numpy",
"Pillow",
"moviepy",
"matplotlib",
"opencv-python"
],
include_package_data=True,
description="A video search and question answering framework.",
url="",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='==3.10',
)