-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
55 lines (49 loc) · 1.64 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import os
from distutils.core import setup
from setuptools import find_packages
DIST_NAME = "agent-evaluation"
VERSION = "0.2.0"
DESCRIPTION = "A generative AI-powered framework for testing virtual agents."
AUTHOR = "Amazon Web Services"
EMAIL = "[email protected]"
URL = "https://awslabs.github.io/agent-evaluation/"
PACKAGE_DIR = "src"
REQUIRES_PYTHON = ">=3.9"
PACKAGE_DATA = {
"": [
"templates/**/*",
],
}
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name=DIST_NAME,
version=VERSION,
packages=find_packages(where=PACKAGE_DIR),
package_dir={"": PACKAGE_DIR},
package_data=PACKAGE_DATA,
description=DESCRIPTION,
long_description=read("README.md"),
long_description_content_type="text/markdown",
python_requires=REQUIRES_PYTHON,
install_requires=read("requirements.txt").splitlines(),
extras_require={"dev": read("requirements-dev.txt").splitlines()},
entry_points={"console_scripts": ["agenteval=agenteval.cli:cli"]},
author=AUTHOR,
author_email=EMAIL,
url=URL,
license="Apache 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)