Spaces:
Runtime error
Runtime error
File size: 692 Bytes
d686824 |
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 |
# 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',
)
|