generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 699 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 699 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
26
27
# Original Copyright 2021 OpenAI under MIT License.
# Modifications Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="mxeval",
py_modules=["mxeval"],
version="1.0",
description="",
author="AWS AI Labs",
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 = mxeval.evaluate_functional_correctness",
]
}
)