mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-07 03:20:48 +00:00
19 lines
546 B
Python
19 lines
546 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='minigpt4',
|
|
version='0.1',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Programming Language :: Python :: 3.9',
|
|
],
|
|
description='The package for minigpt4',
|
|
author='YingzhePeng',
|
|
author_email='yingzhepeng@foxmail.com',
|
|
packages=find_packages(),
|
|
) |