-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
49 lines (42 loc) · 883 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[tool.poetry]
name = "js-rl"
version = "0.1.0"
description = ""
authors = ["Pranav Maganti <[email protected]>"]
readme = "README.md"
packages = [{include = "js_rl"}]
[tool.poetry.dependencies]
python = "^3.11"
esprima = "^4.0.1"
numpy = "^1.24.2"
tqdm = "^4.64.1"
transformers = "^4.27.4"
torch = "^2.0.0"
strenum = "^0.4.10"
gymnasium = "^0.28.1"
esutils = "^1.0.1"
escodegen = "^1.0.11"
seaborn = "^0.12.2"
optimum = "^1.8.7"
[tool.poetry.group.dev.dependencies]
black = {version = "^23.1.0", allow-prereleases = true}
pytest = "^7.2.1"
ipykernel = "^6.22.0"
pandas = "^2.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
"integration",
]
[tool.isort]
skip = ["engines"]
[tool.black]
exclude = '''engines'''