-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 811 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 811 Bytes
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
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="human-eval",
py_modules=["human-eval"],
version="1.0",
description="HumanEval is a benchmark for evaluating the quality of programs written by language models. It is a collection of 1000+ problems, each with a solution written by a human. The solutions are written in Python and range from simple to complex.",
author="BragAI",
packages=find_packages(),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
entry_points={
"console_scripts": [
"evaluate_functional_correctness = human_eval.evaluate_functional_correctness",
]
}
)