mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-06 19:10:45 +00:00
11 lines
237 B
Python
11 lines
237 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='minigpt4',
|
|
version='0.1',
|
|
description='The package for minigpt4',
|
|
author='YingzhePeng',
|
|
author_email='yingzhepeng@foxmail.com',
|
|
packages=find_packages()
|
|
) |