48 lines
1.0 KiB
TOML
48 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[project]
|
|
name = "GamingAgent"
|
|
version = "0.1.0"
|
|
description = "Default template for PDM package"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Lanxiang Hu", email = "lah003@ucsd.edu" },
|
|
{ name = "Yuxuan Zhang", email = "yuz165@ucsd.edu" },
|
|
{ name = "Haoyang Yu", email = "vica031106@gmail.com" }
|
|
]
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"anthropic==0.49.0",
|
|
"mss==10.0.0",
|
|
"numpy==1.24.4",
|
|
"openai",
|
|
"opencv_python",
|
|
"opencv_python_headless",
|
|
"protobuf",
|
|
"pyautogui==0.9.54",
|
|
"pygame==2.6.1",
|
|
"PyGetWindow==0.0.9",
|
|
"google-generativeai==0.8.4",
|
|
"google.genai==1.5.0",
|
|
"pyyaml==6.0.2",
|
|
"gym",
|
|
"stable-retro",
|
|
"together",
|
|
"gymnasium",
|
|
"gymnasium_2048",
|
|
"tile_match_gym",
|
|
"tiktoken",
|
|
"pyboy",
|
|
"psutil",
|
|
"vizdoom",
|
|
"pettingzoo",
|
|
"xai_sdk"
|
|
]
|
|
license = {text = "MIT"}
|
|
repository = "https://github.com/lmgame-org/GamingAgent"
|
|
|
|
[tool.pdm]
|
|
distribution = true
|