-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 956 Bytes
/
setup.py
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
33
from setuptools import setup, find_packages
setup(
name="auto-eval",
version="0.4.3",
packages=find_packages(),
# package_data={
# "eval":["prompt_template/eval_prompt_template.json"]
# },
install_requires=[
# Add your library's dependencies here
"one-api-tool",
"pandas",
"openpyxl",
"tabulate",
"XlsxWriter"
],
entry_points={
"console_scripts": [
"auto-eval=eval.commands.auto_eval:main",
]
},
description="Using only one line of commmands to evaluate multiple models",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/muximus3/Auto-Eval",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)