-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 837 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 837 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
28
29
30
31
#!/usr/bin/env python
from setuptools import find_packages, setup
with open("README.md", "r", encoding="UTF8") as fh:
long_description = fh.read()
setup(
name="llm_coordination",
version="0.0.1",
description="Framework for facilating multi-agent coordination using Large Langugage Models",
author="Saaket Agashe",
author_email="saagashe@ucsc.edu",
packages=find_packages("src"),
keywords=["LLM", "Agents", "Overcooked", "AI"],
package_dir={"": "src"},
package_data={
"overcooked_ai_py": [
"data/layouts/*.layout",
"data/planners/*.py",
"data/human_data/*.pickle",
"data/graphics/*.png",
"data/graphics/*.json",
"data/fonts/*.ttf",
],
"reasong_evals": [
"data/*.csv"
]
},
)