-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
33 lines (32 loc) · 1.19 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
from setuptools import setup, find_packages
setup(
name="textarena",
version="0.5.9",
url="https://github.com/LeonGuertler/TextArena",
author="Leon Guertler",
author_email="[email protected]",
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",
"opencv-python",
"websockets",
"mss"
],
python_requires='>=3.9',
)