# 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', )