forked from TextArena/TextArena
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 1.16 KB
/
setup.py
File metadata and controls
31 lines (30 loc) · 1.16 KB
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
from setuptools import setup, find_packages
setup(
name="textarena",
version="0.6.4",
url="https://github.com/LeonGuertler/TextArena",
author="Leon Guertler",
author_email="Guertlerlo@cfar.a-star.edu.sg",
description="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
"": ["*.jsonl"], # 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",
"openai",
"rich",
"nltk",
"chess",
"networkx",
"python-dotenv",
"websockets",
],
python_requires='>=3.10',
)