forked from LeonGuertler/TextArena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.39 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
from setuptools import setup, find_packages
setup(
name="textarena",
version="0.5.0",
url="https://github.com/LeonGuertler/TextArena",
author="Leon Guertler",
author_email="[email protected]",
description="[WIP] A Collection of Competitive Text-Based Games for Language Model Evaluation and Reinforcement Learning",
packages=find_packages(include=["textarena", "textarena.*"]),
include_package_data=True,
package_data={
"": ["*.json"], # Include all JSON files in any package
"textarena.envs.two_player.TruthAndDeception": ["*.json"], # Explicitly include JSON files in this directory
"textarena.envs.two_player.Debate": ["*.json"], # Explicitly include JSON files in this directory
"textarena": ["envs/**/*.json"], # Recursive include from textarena root
"textarena.envs.two_player.Debate": ["topics.json"],
},
install_requires=[
"requests",
"aiohttp",
"backoff",
"rich",
"networkx",
"openai",
"imageio",
"imageio[ffmpeg]",
"e2b_code_interpreter",
"transformers",
"playwright",
"opencv-python",
"chess",
"pyenchant",
"google-generativeai",
"python-dotenv",
"fastapi",
"uvicorn",
"anthropic",
"boto3",
"urllib3<2.0.0"
],
python_requires='>=3.9',
)