mirror of
https://github.com/open-compass/opencompass.git
synced 2025-05-30 16:03:24 +08:00
13 lines
468 B
Python
13 lines
468 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='evalplus', # 包名 (安装时使用: pip install mypackage)
|
|
version='0.1.0', # 版本号
|
|
author='default', # 作者信息
|
|
description='A sample Python package', # 简短描述
|
|
packages=find_packages(), # 自动发现子包
|
|
install_requires=[], # (可选) 依赖项列表
|
|
python_requires='>=3.10', # (可选) 支持的Python版本
|
|
)
|
|
|