forked from GammaTauAI/leetcode-hard-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (29 loc) · 861 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "leetcode_env"
version = "0.2"
description = "Leetcode evaluation environment for code generation agents"
authors = ["Beck LaBash <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/GammaTauAI/leetcode-hard-gym"
[tool.poetry.dependencies]
python = "^3.9"
beautifulsoup4 = "4.12.0"
gym = "0.26.2"
pydantic = "1.10.7"
python-dotenv = "1.0.0"
requests = "2.28.2"
python-leetcode = "1.2.1"
astunparse = "1.6.3"
pandas = "1.5.3"
pytest = "7.4.0"
ipykernel = "6.25.1"
html2text = "2020.1.16"
langchain = { version = "0.0.268", optional = true }
openai = { version = "0.27.8", optional = true }
termcolor = { version = "2.3.0", optional = true }
[tool.poetry.extras]
llms = ["langchain", "openai", "termcolor"]
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"